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)- A17% (8)
- B4% (2)
- C8% (4)
- D71% (34)
Community Discussion
No community discussion yet for this question.