Question 221
Unless specified, which variables and data values are used to calculate statistics in the MEANS
procedure?
Question 222
After a SAS program is submitted, the following is written to the SAS log:
What changes should be made to the KEEP statement to correct the errors in the LOG?
Question 223
The following SAS program is submitted:
What is the value of the second variable in the data set WORK.AUTHORS?
Question 224
The following SAS program is submitted:
data work.test;
Title = 'A Tale of Two Cities, Charles J.
Dickens';
Word = scan(title,3,' ,');
run;
Which one of the following is the value of the variable WORD in the output data set?
Question 225
The following SAS program is submitted:
data work.january;
set work.allmonths (keep = product month num_sold cost);
if month = 'Jan' then output work.january;
sales = cost * num_sold;
keep = product sales;
run;
Which variables does the WORK.JANUARY data set contain?
