a00 212 samples

Upload: aarthi

Post on 07-Jul-2018

216 views

Category:

Documents


0 download

TRANSCRIPT

  • 8/19/2019 A00 212 Samples

    1/1

      .Do;%let mfirst=sales;end;run;What is the value of the macro variable MFRIST when the program finishes execution?A. 1234B. salesC. 5678D. nullAnswer: B18.The following SAS program is submitted:%let first=yourname;%let last=first;%put &&&last;

    What is written to the SAS Log?A. FirstB. YournameC. &&FirstD. &yournameAnswer: B19.The following SAS program is submitted:%let a=cat;%macro animal(a=frog);%let a=bird;%mend;7 / 8The safer , easier way to help you pass any IT exams.%animal(a=pig)%put a is &a;

    What is written to the SAS log?A. a is pigB. a set catC. a is frogD. a is birdAnswer: B20.Which SQL procedure program deletes rows from the data set CLASS? A. proc sql;Select * from classWhere age