By admin | August 7, 2009

SAS Certified Base Programmer 50 Questions (28)

The following SAS program is submitted: ods html file=’newfile.html’; proc print data=sasuser.houses; run; proc means data=sasuser.houses; run; proc freq data=sasuser.shoes; run; ods html close; proc print data=sasuser.shoes; run; How many HTML files are created? a. 1 b. 2 c. 3 d. 4

By admin | August 7, 2009

SAS Certified Base Programmer 50 Questions (27)

Which one of the following SAS REPORT procedure options controls how column headings are displayed over multiple lines? a. SPACE= b. SPLIT= c. LABEL= d. BREAK=

By admin | August 7, 2009

SAS Certified Base Programmer 50 Questions (26)

A SAS report currently flows over two pages because it is too long to fit within the specified display dimension. Which one of the following actions would change the display dimension so that the report fits on one page? a. Increase the value of the LINENO option. b. Decrease the value of the PAGENO option. […]

By admin | August 6, 2009

SAS Certified Base Programmer 50 Questions (25)

The following report is generated: Style of homes n Asking Price —————————- CONDO 4 $99,313 RANCH 4 $68,575 SPLIT 3 $77,983 TWOSTORY 4 $83,825 Which of the following steps created the report? a. proc freq data=sasuser.houses; tables style price /nocum; format price dollar10.; label style=”Style of homes” price=”Asking price”; run; b. proc print data=sasuser.houses; class […]

By admin | August 6, 2009

SAS Certified Base Programmer 50 Questions (24)

Which of the following permanently associates a format with a variable? a. the FORMAT procedure b. a FORMAT statement in a DATA step c. an INPUT function with format modifiers d. an INPUT statement with formatted style input