By admin | August 11, 2009

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

2 comments | Add One

  1. admin - 08/11/2009 at 3:18 pm

    C

  2. Blaiso - 05/31/2013 at 9:37 pm

    C. the macro variable called info.

Leave a Comment

Leave a Reply

Your email address will not be published.