nerdexam
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)
  • B
    7% (1)
  • C
    79% (11)
  • D
    14% (2)

Community Discussion

No community discussion yet for this question.

Full A00-212 Practice