Multiple choice technology programming languages

data temp; set x; run; “missing code” data test; set y; run; What will be the missing code to reset the page number ?

  1. OPTIONS PAGENO = 1;

  2. OPTIONS RESET PAGENO = 1;

  3. OPTIONS RESET PAGENUMBER = 1;

  4. OPTIONS PAGENUMBER = 1;

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

To reset the page number in SAS output, use 'OPTIONS PAGENO = 1;' which sets the page number back to 1. Options B and C incorrectly use RESET (not valid syntax for PAGENO), and Option D uses the non-existent keyword PAGENUMBER instead of PAGENO.