nerdexam
SAS_Institute

A00-212 · Question #17

Given the SAS data set ONE: ONE DIVISION SALES ----------- ---------- A 1234 A 3654 B 5678 The following SAS program is submitted: data _null_; set one; by division; if first.division then do; %let…

The correct answer is D. sales. See the full explanation below for the reasoning.

Question

Given the SAS data set ONE:

ONE DIVISION SALES ----------- ---------- A 1234 A 3654 B 5678 The following SAS program is submitted:

data null; set one; by division; if first.division then do; %let mfirst = sales; end; run; What is the value of the macro variable MFRIST when the program finishes execution?

Options

  • A1234
  • B5678
  • Cnull
  • Dsales

How the community answered

(48 responses)
  • A
    17% (8)
  • B
    4% (2)
  • C
    8% (4)
  • D
    71% (34)

Community Discussion

No community discussion yet for this question.

Full A00-212 Practice