nerdexam
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)
  • A
    7% (2)
  • B
    4% (1)
  • C
    85% (23)
  • D
    4% (1)

Community Discussion

No community discussion yet for this question.

Full A00-212 Practice