Which PROC PRINT step correctly displays only the first 10 observations in the data set?
What is the default byte size of a numeric variable?
Enter your numeric answer in the space above.
Which statement is true regarding a variable?
Given the input data sets EMPLOYEES and DONATIONS, and the output data set NODONATIONS below:
Given the input data set WORK. GR_ANS with two character variables:
The following SAS program is submitted:
Which report is created?
A)
B)
C)
D)
Which PROC MEANS statement specifies the numeric variables to analyze?
Given the partial report shown below:
Which step will produce this report?
Given the data sets AMERICIAN NATIONAL and results in the data set BASEBALL shown below:
Which DATA step correctly creates the BASEBALL data set?
Which code uses the correct syntax to conditionally create the two variables age-Cat and account?
Which PROC PRINT option displays variable labels in the report?
What happens when you submit the code shown below?
data table1 table2;
set sashelp.shoes;
output;
run;
You submit a program and the SAS log is shown below:
Which statement is true regarding the submitted program?
Which statement is true regarding the XLSX engine in the LIBNAME statement?
The data set Snacks contains three variables (productName, Flavor, and Price). Given the program shown below:
What is the type and length of SnackType?
Which statement is true about the DROP statement during the compilation phase of the DATA step?
Given the following code:
Which variables are created with the BY statement?
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)
Given the PROC PRINT report of the INVEST data set shown below:
How many observations are in the FORCAST data set after this program executes?
Which iterative DO statement is invalid?
Given the SAS data set WORK PRODUCTS:
How many variables does the WORK REVENUE data set contains?
How many statements are In the program shown below?
When the following code is submitted, execution fails.
Why does the execution fail?
Which program correctly subnets the SASHELP. BASEBALL data set to include only the players in the East Division with 75 or more hits?