The following SAS program is submitted:
options pageno = 1;
proc print data = sasuser.houses;
run;
run;
proc means data = sasuser.shoes;
run;
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
A. 1
B. 2
C. 5
D. 6
4 comments:
Answer: D
Proc Print prints for 5 pages...Means starts from 6
Answer B
print procedure takes 1st page and means proc takes 2nd page
concur with SAS Guru, it should be D, means starts from page 6.
D
Post a Comment