SAS Certified Adv Programmer 130 Questions (38)
The following SAS program is submitted:
%macro execute; <insert statement here> proc print data = sasuser.houses; run; %end; %mend;
Which of the following completes the above program so that it executes on Tuesday?
A. %if &sysday = Tuesday %then %do;
B. %if &sysday = ‘Tuesday’ %then %do;
C. %if “&sysday” = Tuesday %then %do;
D. %if ‘&sysday’ = ‘Tuesday’ %then %do;
Topics:
SAS Adv Questions |
1 Comment »
A