By admin | January 3, 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. %if ‘&sysday’ = ‘Tuesday’ %then %do;

One comment | Add One

  1. admin - 01/3/2010 at 9:12 am

    A

Leave a Comment

Leave a Reply

Your email address will not be published.