SAS_Institute
A00-280 · Question #59
The following SAS program is submitted: %let Av=age; %macro LABD(Av=weight); %let Av=gend; %mend; %LABD(Av=height) %put Av is &Av; What will be written to the SAS log?
The correct answer is D. Av is age. See the full explanation below for the reasoning.
Question
The following SAS program is submitted:
%let Av=age;
%macro LABD(Av=weight);
%let Av=gend;
%mend;
%LABD(Av=height)
%put Av is &Av;
What will be written to the SAS log?
Options
- AAv is weight
- BAv is gend
- CAv is height
- DAv is age
How the community answered
(33 responses)- A9% (3)
- B3% (1)
- C15% (5)
- D73% (24)
Community Discussion
No community discussion yet for this question.