nerdexam
SAS_Institute

A00-211 · Question #43

Which step sorts the observations of a permanent SAS data set by two variables and stores the sorted observations in a temporary SAS data set?

The correct answer is B. proc sort data=SASUSER.EMPLOYEES out=EMPSORT. See the full explanation below for the reasoning.

Question

Which step sorts the observations of a permanent SAS data set by two variables and stores the sorted observations in a temporary SAS data set?

Options

  • Aproc sort out=EMPLOYEES data=EMPSORT;
  • Bproc sort data=SASUSER.EMPLOYEES out=EMPSORT;
  • Cproc sort out=SASUSER.EMPLOYEES data=WORK.EMPSORT; by Lname Fname;
  • Dproc sort data=SASUSER.EMPLOYEES out=SASUSER.EMPSORT; by Lname and Fname;

How the community answered

(67 responses)
  • A
    9% (6)
  • B
    84% (56)
  • C
    3% (2)
  • D
    4% (3)

Community Discussion

No community discussion yet for this question.

Full A00-211 Practice