Archive for October, 2009

By admin | October 6, 2009

SAS Certified Base Programmer 123 Questions (106)

Which one of the following ODS statement options terminates output being written to an HTML file? A. END B. QUIT C. STOP D. CLOSE

By admin | October 6, 2009

SAS Certified Base Programmer 123 Questions (105)

The following SAS program is submitted: <insert ODS statement here> proc means data= sasuser .shoes; where product in (‘sandal’ , ‘Slipper’ , ‘Boot’); run; Which one of the following ODS statements completes the program and sends the report to an HTML file? A. ods html = ‘sales .html’; B. ods file=’sales .html’; C. ods file […]

By admin | October 6, 2009

SAS Certified Base Programmer 123 Questions (104)

The following SAS program is submitted: proc format; value score 1 – 50 = ‘Fail’ 51-100=’Pass’; run; proc report data=work .courses nowd; column exam; define exam / display format=score.; run; The variable EXAM has a value of 50.5. How will the EXAM variable value be displayed in the REPORT procedure output? A. Fail B. Pass […]

By admin | October 2, 2009

SAS Certified Base Programmer 123 Questions (103)

The following SAS program is submitted: options pageno = 1; proc print data=sasuser. houses; run; proc means data=sasuser .shoes; run; The report created by the PRINT procedure step generates 5 pages of output. What is the page number on the first page of the report generated by the MEANS procedure step? A. 1 B. 2 […]

By admin | October 2, 2009

SAS Certified Base Programmer 123 Questions (102)

Which one of the following SAS system options displays the time on a report? A. TIME B. DATE C. TODAY D. DATETIME