By admin | October 2, 2009

SAS Certified Base Programmer 123 Questions (103)

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? A. 1 B. 2 […]

By admin | October 2, 2009

SAS Certified Base Programmer 123 Questions (102)

Which one of the following SAS system options displays the time on a report? A. TIME B. DATE C. TODAY D. DATETIME

By admin | October 2, 2009

SAS Certified Base Programmer 123 Questions (101)

The following SAS program is submitted: proc freq data=sales; <insert TABLES statement here> run; Exhibit: output from the FREQ procedure. The FREQ ProcdureTable of Region by Product Region Product FrequencyPercentRow PctCol Pct Boot Sandal Slipper Total Africa 812.7033.3338.10 812.7033.3338.10 812.7033.3338.10 2438.10 Asia 23.1733.339.52 23.1733.339.52 23.1733.339.52 69.52 Canada 57.9433.3323.81 57.9433.3323.81 57.9433.3323.81 1523.81 Pacific 69.5233.3328.57 69.5233.3328.57 69.5233.3328.57 […]

By admin | October 2, 2009

SAS Certified Base Programmer 123 Questions (100)

Which one of the following SAS system options prevents the page number from appearing on a report? A. NONUM B. NOPAGE C. NONUMBER D. NOPAGENUM

By admin | October 2, 2009

SAS Certified Base Programmer 123 Questions (99)

Exhibit: view two reports. Assume permanent variable labels have been assigned. Output we are getting Regin Asia Subsidiary Total Sales Bangkok $1,996 Bangkok $3,033 Bangkok $3,230 Bangkok $3,019 Bangkok $5,389 Seoul $60,712 Seoul $11,754 Seoul $116,333 Seoul $4,978 Seoul $149,013 Seoul $937 Seoul $20,448 Seoul $78,234 Tokyo $1,155 ——————————————————————————————————————————————- Output we want! Regin Asia Subsidiary […]