mycsg.in
SAS
SASnR
Clinical Programming
CRFs
SDTM
ADaM
TFL
Tasks
Macros
QnA
Certification
Resources
Disclaimer
Contact Us
Training
Sign Up
Login
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?
Av is weight
Av is gend
Av is height
Av is age