SAS Certified Adv Programmer 50 Questions (10)
The following SAS program is submitted:
proc sql noprint; select name into : info separated by ' ' from dictionary.columns where libname="SASHELP" and memname="CLASS"; quit;
Given that a SAS data set Sashelp.Class exists, which one of the following is generated by the above program?
a. a list of names
b. a syntax error in the log
c. a macro variable called info
d. a report showing metadata information
Topics:
SAS Adv Questions |
2 Comments »
C
C. the macro variable called info.