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

By admin | September 29, 2009

SAS Certified Base Programmer 123 Questions (93)

The following SAS program is submitted: proc sort data = sasuser.houses out = houses; by style; run; proc print data = houses; <insert statement(s) here> run; Click on the Exhibit button to view the report produced. style bedrooms baths price CONDO 2 1.5 80050 3 2.5 79350 4 2.5 127150 2 2.0 110700 RANCH 2 […]

By admin | September 29, 2009

SAS Certified Base Programmer 123 Questions (92)

The following SAS program is submitted: proc report data = sasuser.houses nowd headline headskip; column style price; where price