Google New or returning user — sign in with Google for instant login, no password needed. Sign in with Google Maybe later
Quiz title : Set - 001 - Part 07
Question 1 of 10




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?