Select the best answer
for each question. Check your answers using the answer key in the
appendix.
-
How many observations
and variables does the data set below contain?
-
3 observations, 4 variables
-
3 observations, 3 variables
-
4 observations, 3 variables
-
cannot tell because
some values are missing
-
How many program steps
are executed when the program below is processed?
data user.tables;
infile jobs;
input date yyddmm8. name $ job $;
run;
proc sort data=user.tables;
by name;
run;
proc print data=user.tables;
run;
-
What type of variable is the variable AcctNum ...