Question 131
The following SAS program is submitted:
If the value for the variable Jobcode is: PILOT2, what is the value of the variable Description?
Question 132
Given the SAS data set WORK.P2000:
And the SAS data set WORK.P2008:
The following output is desired:
Which SAS program correctly combines the data?
Question 133
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 134
The following SAS program is submitted:
What is produced as output?
Question 135
Which step sorts the observations of a permanent SAS data set by two variables and stores the sorted observations in a temporary SAS data set?
