SAS_Institute
A00-212 · Question #154
Given the SAS data sets ONE and TWO: ONE TWO COMMON X COMMON Y A 10 A 1 A 13 A 3 A 14 B 4 B 9 B 2 The following SAS program is submitted: data combine; set one; set two; run; What data values are…
The correct answer is B. COMMON X Y. See the full explanation below for the reasoning.
Question
Given the SAS data sets ONE and TWO:
ONE TWO COMMON X COMMON Y A 10 A 1 A 13 A 3 A 14 B 4 B 9 B 2 The following SAS program is submitted:
data combine; set one; set two; run; What data values are stored in data set COMBINE?
Options
- ACOMMON X Y
- BCOMMON X Y
- CCOMMON X Y
- DCOMMON X Y
How the community answered
(29 responses)- A7% (2)
- B72% (21)
- C3% (1)
- D17% (5)
Community Discussion
No community discussion yet for this question.