Question 75:

 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?

  1. 1
  2. Get all Questions and Answer from here
  3. You need to have paid subscription to access all questions
  4. Thanks for considering Python Certification Material

 Correct Answer : 4

 pagno=6 because proc print write 5 pages output.and after that proc means will write where..?obviously on page no =6;

You can access to full explanation to question and answer from this page.