Archive for August, 2009

By admin | August 20, 2009

SAS Certified Adv Programmer 50 Questions (38)

Which one of the following FORMAT procedure options is used to create a SAS data set from an existing format? a. FMTLIB b. CREATE c. CNTLIN= d. CNTLOUT=

By admin | August 20, 2009

SAS Certified Adv Programmer 50 Questions (37)

Which one of the following FORMAT procedure options is used to create a format from the values in a SAS data set? a. FMTLIB b. INVALUE c. CNTLIN= d. CNTLOUT=

By admin | August 20, 2009

SAS Certified Adv Programmer 50 Questions (36)

By default, in which one of the following SAS catalogs are user-defined formats stored? a. Work.Format b. Work.Formats c. Sasuser.Format d. Sasuser.Formats

By admin | August 17, 2009

SAS Certified Adv Programmer 50 Questions (35)

Which one of the following programs creates a SAS data view named Sasuser.Ranch? a. data _null_ view=sasuser.ranch; set sasuser.houses; where style=’RANCH’; run; b. data _null_ / view=sasuser.ranch; set sasuser.houses; where style=’RANCH’; run; c. data sasuser.ranch view=sasuser.ranch; set sasuser.houses; where style=’RANCH’; run; d. data sasuser.ranch / view=sasuser.ranch; set sasuser.houses; where style=’RANCH’; run;

By admin | August 17, 2009

SAS Certified Adv Programmer 50 Questions (34)

Which one of the following statements is true regarding the use of a SAS numeric variable of less than 8 bytes? a. It requires no additional processing when reading the SAS data set. b. It might reduce the precision when the value is written to the SAS data set. c. It has an effect on […]