Question 46
The following SAS program is submitted:
What is the value of the variable Prod in the output data set?
Question 47
The following SAS program is submitted:
options pageno = 1;
proc print data = sasuser.houses;
run;
proc means data = sasuser.shoes;
run;
The report created by the PRINT procedure step generates 5 pages of output.
What is the page number on the first page of the report generated by the MEANS procedure step?
Question 48
The following SAS program is submitted:
How many observations are written to the WORK.SALES data set?
Question 49
The following SAS program is submitted:
What types of variables are DayOfMonth, MonthOfYear, and Year?
Question 50
The following SAS program is submitted:
data work.test;
array items{3} _temporary_;
run;
What are the names of the variable(s) in the WORKTEST data set?
