SAS_Institute
A00-212 · Question #111
Given the following SAS data sets ONE and TWO: ONE TWO OBS COMMON X OBS COMMON Y 1 A 10 1 A 1 2 A 13 2 A 3 3 A 14 3 B 4 4 B 9 4 B 2 5 C 8 5 C 5 6 C 14 The following SAS DATA step is submitted: data…
The correct answer is A. OBS COMMON X Y. See the full explanation below for the reasoning.
Question
Given the following SAS data sets ONE and TWO:
ONE TWO OBS COMMON X OBS COMMON Y 1 A 10 1 A 1 2 A 13 2 A 3 3 A 14 3 B 4 4 B 9 4 B 2 5 C 8 5 C 5 6 C 14 The following SAS DATA step is submitted:
data combine; merge one two; by common; run; Which one of the following represents the data values stored in data set COMBINE?
Options
- AOBS COMMON X Y
- BOBS COMMON X Y
- COBS COMMON X Y
- DOBS COMMON X Y
How the community answered
(14 responses)- A71% (10)
- B14% (2)
- C7% (1)
- D7% (1)
Community Discussion
No community discussion yet for this question.