SAS_Institute
A00-212 · Question #151
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 C. 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; set one; set two; 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
(27 responses)- A11% (3)
- B4% (1)
- C81% (22)
- D4% (1)
Community Discussion
No community discussion yet for this question.