MultipleChoice
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