Archive for January, 2010
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. […]