Given the following DATA step:
What is the value of average?
Enter your numeric answer in the space above.
What is the default byte size of a numeric variable?
Enter your numeric answer in the space above.
Given the code shown below:
What will be the format for MSRP in the RPOC PRINT output?
Which PROC SORT option allows you to create an output data set of the sorted data?
Which statements read the input data set SASHELP. SHOES and create the output data set WORK. TOTAL?
Given the data sets AMERICIAN NATIONAL and results in the data set BASEBALL shown below:
Which DATA step correctly creates the BASEBALL data set?
Given the program shown below:
Given the partial PROC PRINT report below:
Why are the labels for msbp, MPG_city, and MPG_Highway NOT displaying in the PROC PRINT report^
Which sentence is true regarding the VALUE statement in the FORMAT procedure?
Given the partial report shown below:
Which step will produce this report?
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 IMPORT step correctly creates the MYDATA,SALES data set from the SALES.SCV file?
Which option renames the variable Name to StudentName when reading the ClassRoster data set?
The sashelp. class data set has 19 observations.
Given the frequency information about the Age, shown below:
How many observations are written to output data set when the following code is submitted?
Given the following SAS program:
What footnotes appear for the second PROC PRINY report?
What happens when you submit the code shown below?
data table1 table2;
set sashelp.shoes;
output;
run;
Which assignment statement uses the SUBSTR function to extract the four-digit year from the value of date?
data days;
date="02Apr2019";
insert-statement-here
run;
When the following code is submitted, execution fails.
Why does the execution fail?
How many statements are in the following PROC PRINT step?
Which statement is true about the DROP statement during the compilation phase of the DATA step?
Which two correctly create a SAS date value? (Choose two.)
Given the following code:
Which variables are created with the BY statement?
Which statement is true regarding the SET statement?
Given the PATIENT and VISIT data sets and the DATA step shown below:
PATIENT
VISIT
How many observations are created in the ALLVISITS data set?