1.
Given the SAS data set WORK.PRODUCTS:
How many observations does the WORK.OUTDOOR data set contain?
2.
Given the following raw data records in TEXTFILE.TXT:
The following output is desired:
Which SAS program correctly produces the desired output?

 
3.
Given the SAS data set WORK.PRODUCTS:
How many variables does the WORK.REVENUE data set contain?
4.
The following SAS program is submitted:
What is the initial value of the variable Total in the following program?
5.
Consider the following data step:
data WORK.NEW;
set WORK.OLD;
Count+1;
run;
The varaible Count is created using a sum statement. Which statement regarding this variable is true?
6.
The data set WORK.REALESTATE has the variable LocalFee with a format of 9. and a variable
CountryFee with a format of 7.;
The following SAS program is submitted:
What are the formats of the variables LOCALFEE and COUNTRYFEE in the output dataset?
7.
Given the following raw data records:
The following output is desired:
Which SAS program correctly reads in the raw data?
8.
Which of the following programs correctly invokes the DATA Step Debugger?
9.
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?
10.
Consider the data step:
Which of the following assignment statements for variable group are functionally equivalent to the original statement used in the above data step?