NEW
Font size
WorksheetsCh 4 Quiz
Total questions: 9
Worksheet time: 4mins
In which phase does the DATA step check for syntax errors?
compilation
execution
proclamation
excitation
What statement is used to read a SAS data set in a DATA step?
DATA statement
WHERE statement
SET statement
assignment statement
To process an Excel file with the DATA step, you must first create a copy of the data as a SAS table.
True
False
What is the name of the output data set in the program below?
work.us
orion.sales
country
sales
The data set orion.sales contains nine columns. Given this DATA step, how many columns does work.comp contain?
four
nine
five
Given the assignment statement below, what is the value of AvgExp for the observation that is shown?
6
8
. (missing value)
The statement generates a syntax error
In the program below, what is the value of Credit if Country is 'au'?
300
500
0
missing
What is the length of the Car_Type column created in this program?
6
7
8
Use a DO group in a DATA step when you want to execute multiple statements for a true IF-THEN expression.
True
False
