SAS_Institute
A00-202 · Question #8
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 A. 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
- Apositional
- Bdefault
- Ccommand
- Dkeyword
How the community answered
(67 responses)- A73% (49)
- B9% (6)
- C13% (9)
- D4% (3)
Community Discussion
No community discussion yet for this question.