By admin | October 22, 2009

SAS Certified Adv Programmer 130 Questions (3)

Which one of the following options controls the pagesize of a SAS data set? A. SIZE= B. BUFNO= C. BUFSIZE= D. PAGESIZE=

By admin | October 20, 2009

SAS Certified Adv Programmer 130 Questions (2)

The following SAS program is submitted: <insert statement here> %let development = ontime; proc print data = sasuser.highway; title “For &dept”; title2 “This project was completed &development”; run; Which one of the following statements completes the above and resolves titlel to “For research&development”? A. %let dept = %str(research&development); B. %let dept = %str(research%&development); C. %let […]

By admin | October 20, 2009

SAS Certified Adv Programmer 130 Questions (1)

Which of the following statement(s) in the DATASETS procedure alters the name of a SAS data set stored in a SAS data library? A. RENAME statement only B. CHANGE statement only C. MODIFY and RENAME statements D. MODIFY and CHANGE statements