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=
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 […]
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
SAS Certified Adv Programmer 50 Questions (50)
Which one of the following is used to create an index for a SAS data set? a. INDEX function b. INDEX= data set option c. CREATE INDEX statement in the INDEX procedure d. CREATE INDEX statement in the DATASETS procedure
SAS Certified Adv Programmer 50 Questions (49)
Which one of the following SAS programs is the most efficient in producing and removing an index from a SAS data set? a. proc datasets lib=sasuser; modify houses; index create style; index delete location; quit; b. proc datasets lib=sasuser; modify houses; index delete location; index create style; quit; c. proc datasets lib=sasuser; modify houses; delete […]