SAS Certified Adv Programmer 50 Questions (27)
Given the following partial SAS log:
11 %macro a(location); 12 %if &location = FL %then 13 libname &location 'c:\state'; 14 %mend; 15 %a(FL) NOTE: SCL source line. 16 libname mylib 'c:\mydata'; ------- 22 ERROR: Libname FL is not assigned. ERROR: Error in the LIBNAME statement. ERROR 22-7: Invalid option name LIBNAME. |
Which of the following SAS system options can be used to display the results of resolving the macro variable reference &location?
a. MPRINT only
b. MLOGIC only
c. SYMBOLGEN only
d. MPRINT and MLOGIC
Topics:
SAS Adv Questions |
2 Comments »
C
C:displays the results of resolving macro variable references