SAS_Institute
A00-212 · Question #41
Given the non-indexed SAS data set TEMP: TEMP X Y -- -- P 52 P 45 A 13 A 56 R 34 R 12 R 78 The following SAS program is submitted: proc print data = temp; <insert BY statement here> run; Which BY…
The correct answer is C. by X notsorted. See the full explanation below for the reasoning.
Question
Given the non-indexed SAS data set TEMP:
TEMP X Y -- -- P 52 P 45 A 13 A 56 R 34 R 12 R 78 The following SAS program is submitted:
proc print data = temp; <insert BY statement here> run; Which BY statement completes the program, creates a listing report that is grouped by X and completes without errors?
Options
- Aby X;
- Bby X grouped;
- Cby X notsorted;
- Dby descending X;
How the community answered
(27 responses)- A7% (2)
- B4% (1)
- C85% (23)
- D4% (1)
Community Discussion
No community discussion yet for this question.