SAS_Institute
A00-212 · Question #135
The following SAS program is submitted: %macro test(var); proc print data = sasuser.class; where age > &var; run; %mend; Which type of parameter is the macro variable VAR?
The correct answer is C. positional. See the full explanation below for the reasoning.
Question
The following SAS program is submitted:
%macro test(var); proc print data = sasuser.class; where age > &var; run; %mend; Which type of parameter is the macro variable VAR?
Options
- Adefault
- Bkeyword
- Cpositional
- Dcommand
How the community answered
(14 responses)- B7% (1)
- C79% (11)
- D14% (2)
Community Discussion
No community discussion yet for this question.