Question 91

Given the SAS data set PEPM.STUDENTS:
PERM.STUDENTS
NAME AGE
Alfred 14
Alice13
Barbara13
Carol14
The following SAS program is submitted:
libname perm 'SAS data library';
data students;
set perm. Students;
file 'file specification';
put name $15. @5 age 2.;
run;
What is written to the output raw data file?
  • Question 92

    Which statement is true concerning the SAS automatic variable _ERROR_?
  • Question 93

    The following SAS DATA step executes on Monday, April 25, 2000:
    data newstaff;
    set staff;
    start_date = today();
    run;
    Which one of the following is the value of the variable START_DATE in the output data set?
  • Question 94

    The following SAS program is submitted:
    proc sort data=SASUSER.PROJECTS out=PSORT;
    by Product Code descending Date Cost;
    run;
    Which of the following is true concerning the submitted program?
  • Question 95

    The SAS data set named WORK.TEST is listed below:
    capacity airplanetype staff
    150 Large 10
    Which one of the following SAS programs created this data set?