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 […]
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
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 […]
SAS Certified Base Programmer 123 Questions (98)
The following SAS program is submitted: footnote1 ‘Sales Report for last Mounth’; footnote2 ‘Selected Products Only’; footnote3 ‘All Regions’; footnote4 ‘All Figure in Thousands of Dollars’; proc print data = sasuser.shoes; footnote2 ‘All products’; run; Which one of the following contains the footnote text that is displayed in the report? A. All Products B. Sales […]
SAS Certified Base Programmer 123 Questions (97)
The following SAS program is submitted: proc means data = sasuser.houses std mean max; var sqfeet; run; Which one of the following is needed to display the standard deviation with only two decimal places? A. Add the option MAXDEC = 2 to the MEANS procedure statement. B. Add the statement MAXDEC = 7.2; in the […]