mycsg.in
SAS
SASnR
Clinical Programming
CRFs
SDTM
ADaM
TFL
Tasks
Macros
Quizzes
Resources
Disclaimer
Contact Us
Advertisement
1 / 10
Set - 001 - Part 01
Question 1 of 10
The following SAS program is submitted:;
%macro
one(
input
)
;
%
two
;
%put
the value is &date;
%mend
;
%macro
two
;
data _null_;
call symput(
'date'
,
'12SEP2008'
);
run;
%mend
;
%let
date=31DEC2006;
%
one
(&date)
What
is the result when the
%PUT
statement executes?
A macro variable DATE with the value 12SEP2008 is retrieved from the global symbol table
A macro variable DATE with the value 12SEP2008 is retrieved from the local symbol table for the TWO macro
A macro variable DATE with the value 31DEC2006 is retrieved from the global symbol table
A macro variable DATE with the value 12SEP2008 is retrieved from the local symbol table for the ONE macro
Saving progress…
My progress
⚑
Something not right with this question?
Report it
Advertisement
Report this question
×
Quiz:
Loading the question…
Question
What's the issue?
The marked correct answer is wrong
Question is unclear / insufficient information
Pick the correct answer
marked correct
Describe the issue
(optional)