| Quiz:
Basic
Concepts
Select the best answer for each question and click Score My Quiz.
-
How many observations and variables
does the data set below contain?
| Name |
Sex |
Age |
| Picker |
M |
32 |
| Fletcher |
|
28 |
| Romano |
F |
. |
| Choi |
M |
42 |
-
How many program steps are executed
when the program below is processed?
data user.tables;
infile jobs;
input date name $ job $;
run;
proc sort data=user.tables;
by name;
run;
proc print data=user.tables;
run;
-
What type of variable is the variable
AccountNumber in the data set below?
| AccountNumber |
Balance |
| 3456_1 |
M |
| 2451_2 |
|
| Romano |
F |
| Choi |
M |
-
What type of variable is the variable
Wear in the data set below?
| Brand |
Wear |
| Acme |
43 |
| Ajax |
34 |
| Atlas |
. |
-
Which of the following can you
use to read numeric values that contain dollar signs and commas into
a SAS data set?
-
Which of the following files are
permanent SAS files?
-
In a DATA step, how can you reference
a temporary SAS data set named Forecasts?
-
The format DOLLAR8.2 specifies
-
How many statements does the following
SAS program contain?
proc print data=new.prodsales pagesize=20
nonumber label double;
var state day price1 price2; where state='NC';
label state='Name of State'; run;
-
What is a SAS library?
|