By admin | September 30, 2009

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 […]

By admin | September 30, 2009

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 […]

By admin | September 30, 2009

SAS Certified Base Programmer 123 Questions (96)

Exhibit: listing of the SASUSER.HOUSES data set. Obs style sqfeet bedrooms baths street price 1 RANCH 1250 2 1.0 Sheppard Avenue $64,000 2 SPLIT 1190 1 1.0 Rand Street $65,850 3 CONDO 1400 2 1.5 Market Street $80,050 4 TWOSTORY 1810 4 3.0 Garris Street $107,250 5 RANCH 1500 3 3.0 Kemble Avenue $86,650 6 […]

By admin | September 30, 2009

SAS Certified Base Programmer 123 Questions (95)

Exhibit: Output of a FREQ procedure. The FREQ Procedure Style of homes style Frequency Percent Cumulative Frequency Cumulative Percent CONDON 4 26.67 4 26.67 RANCH 4 26.67 8 53.33 SPLIT 3 20.00 11 73.33 TWOSTORY 4 26.67 15 100.00 Number of bedrooms bedrooms Frequency Percent Cumulative Frequency Cumulative Percent 1 2 13.33 2 13.33 2 […]

By admin | September 30, 2009

SAS Certified Base Programmer 123 Questions (94)

Unless specified, which variables and data values are used to calculate statistics in the MEANS procedure? A. non-missing numeric variable values only B. missing numeric variable values and non-missing numeric variable values only C. non-missing character variables and non-missing numeric variable values only D. missing character variables, non-missing character variables, missing numeric variable values, and […]