nerdexam
SAS_Institute

A00-211 · Question #12

Given the SAS data set EMPLOYEE INFO: EMPLOYEE_INFO IDNumber Expenses 100.00 133.15 234.34 111.12 The following SAS program is submitted: proc sort data = employee_info; <insert BY statement here>…

The correct answer is B. by IDNumber Expenses. See the full explanation below for the reasoning.

Question

Given the SAS data set EMPLOYEE INFO:

EMPLOYEE_INFO IDNumber Expenses 100.00 133.15 234.34 111.12 The following SAS program is submitted:

proc sort data = employee_info; <insert BY statement here> run; Which BY statement completes the program and sorts the data sequentially by ascending expense values within each ascending IDNUMBER value?

Options

  • Aby Expenses IDNumber;
  • Bby IDNumber Expenses;
  • Cby ascending Expenses IDNumber;
  • Dby ascending IDNumber ascending Expenses;

How the community answered

(16 responses)
  • A
    6% (1)
  • B
    88% (14)
  • C
    6% (1)

Community Discussion

No community discussion yet for this question.

Full A00-211 Practice