Select the best answer
for each question. Check your answers using the answer key in the
appendix.
-
Which function calculates
the average of the variables Var1, Var2, Var3, and Var4?
-
Within the data set
Hrd.Temp, PayRate is a character variable and Hours is a numeric variable.
What happens when the following program is run?
data work.temp;
set hrd.temp;
Salary=payrate*hours;
run;
-
SAS converts the values
of PayRate to numeric values. No message is written to the log.
-
SAS converts the values
of PayRate to numeric values. A message is written to the log.
-
SAS converts the values of Hours to character values. No message ...