SAS Certified Adv Programmer 50 Questions (17)
The following SAS program is submitted:
%let sun=SHINE; %let shine=MOON; proc print data=weather(keep=sun shine moon); sum &&&&sun; run;
Which one of the following variables is summed in the resulting report?
a. sun
b. MOON
c. SHINE
d. None, an ERROR message will be written to the log.
Topics:
SAS Adv Questions |
2 Comments »
C
If the code is
sum &&&sun;
Will the answer still be C?