nerdexam
SAS_Institute

A00-212 · Question #55

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, create a listing report that is grouped by X and completes without errors?

Options

  • AX;
  • BBy X groupd;
  • CBy X notsorted;
  • DBy descending X;

How the community answered

(28 responses)
  • A
    14% (4)
  • B
    4% (1)
  • C
    75% (21)
  • D
    7% (2)

Community Discussion

No community discussion yet for this question.

Full A00-212 Practice