nerdexam
SAS_Institute

A00-211 · Question #104

The following SAS program is submitted: proc print data = sasuser.houses; run; proc means data = sasuser.shoes; run; Which one of the following OPTIONS statements resets the page number to 1 for the…

The correct answer is A. options pageno = 1. See the full explanation below for the reasoning.

Question

The following SAS program is submitted:

proc print data = sasuser.houses; run; proc means data = sasuser.shoes; run; Which one of the following OPTIONS statements resets the page number to 1 for the second report?

Options

  • Aoptions pageno = 1;
  • Boptions pagenum = 1;
  • Coptions reset pageno = 1;
  • Doptions reset pagenum = 1;

How the community answered

(44 responses)
  • A
    84% (37)
  • B
    2% (1)
  • C
    5% (2)
  • D
    9% (4)

Community Discussion

No community discussion yet for this question.

Full A00-211 Practice