nerdexam
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)
  • A
    73% (49)
  • B
    9% (6)
  • C
    13% (9)
  • D
    4% (3)

Community Discussion

No community discussion yet for this question.

Full A00-202 Practice