SAS Certified Base Programmer 123 Questions (103)
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?
A. 1
B. 2
C. 5
D. 6
Topics:
SAS Base Questions |
3 Comments »
D
The first proc. mistypo “print” to “Prient”
Thanks