Question 106
The following SAS program is submitted:
How will the Exam variable value be displayed in the FREQ procedure output?
Question 107
Given the SAS data set WORKAWARDS:
WORK.AWARDS
FNAME POINTS MONTH
----------- ------------ -----------
Amy 2 4
Amy 1 7
Gerard 3 3
Wang 3 3
Wang 1 12
Wang 1 8
The following SAS program is submitted:
proc sort data = work.awards;
by descending fname points;
run;
How are the observations sorted?
Question 108
Which of the following programs correctly invokes the DATA Step Debugger?
Question 109
The following SAS program is submitted:
data revenue;
set year_1;
var1 = mdy(1,15,1960);
run;
Which one of the following values does the variable named VAR1 contain?
Question 110
Given the following raw data records in TEXTFILE.TXT:
The following output is desired: Which SAS program correctly produces the desired output?

