#15Multiple Choice

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 divition;

If first.division then -
Do;
%let mfirst=sales;
end;
run;
What is the value of the macro variable MFRIST when the program finishes execution?

Previous
Question 15 of 184
Exam A00-212 Topic 1 Question 15
Back to all questions
Next