MultipleChoice
Given the input data set WORK.RUN:

Given the following DATA step:

What is the correct output data set WORK.RUN2?
A)

B)

C)

D)

MultipleChoice
Which two statements are true about data set options such as KEEP= and RENAME =? (Choose two.)
OptionsMultipleChoice
The data set SASHELP. CARS contains information on different vehicles. How do you correctly write the observations with Type of 'SUV' to the suv data set and Type
of 'Sedan' to the sedans data set?
OptionsMultipleChoice
Which variable in the Program Data Vector represents the number of times the Data step has iterated?
OptionsCorrectText
What is the default byte size of a numeric variable?
Enter your numeric answer in the space above.
MultipleChoice
Given the data sets AMERICIAN NATIONAL and results in the data set BASEBALL shown below:
AMERICAN

NATIONAL
BASEBALL

Which DATA step correctly creates the BASEBALL data set?
OptionsMultipleChoice
Given the SAS data set WORK PRODUCTS:

The following SAS program is submitted:

How many variables does the WORK REVENUE data set contains?
OptionsMultipleChoice
Given the input data sets EMPLOYEES and DONATIONS, and the output data set NODONATIONS below:
EMPLOYERS

DONATIONS

NODONATIONS

MultipleChoice
Which LABEL statement has correct syncytax?
OptionsMultipleChoice
Given the partial shown below:

Which step will produce this report?
A.
proc freq data=sashelp. shoes
data=sashelp.shoes; region product / list
run;
Options