Multiple choice technology programming languages

proc print data=sales; run; options ? proc means data=sales; run; Which option statement has to be used to reset the page number to 3 for the second report?

  1. options reset pagenum=3;

  2. options reset pageno=3;

  3. options pageno=3;

  4. options pagenum=3;

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

The SAS system option PAGENO= specifies the page number for the next page of SAS output. Therefore, options pageno=3; resets the page number to 3. Options like pagenum or reset are not valid SAS system options for this purpose.