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

By admin | September 29, 2009

SAS Certified Base Programmer 123 Questions (91)

The following SAS program is submitted: proc report data = work.houses nowd; column style price; where prices

By admin | September 29, 2009

SAS Certified Base Programmer 123 Questions (90)

A realtor has two customers. One customer wants to view a list of homes selling for less than $60,000. The other customer wants to view a list of homes selling for greater than $100,000. Assuming the PRICE variable is numeric, which one of the following PRINT procedure steps will select all desired observations? A. proc […]

By admin | September 29, 2009

SAS Certified Base Programmer 123 Questions (89)

The value 110700 is stored in a numeric variable. Which one of the following SAS formats is used to display the value as $110,700.00 in a report? A. comma8.2 B. comma11.2 C. dollar8.2 D. dollar11.2