By admin | August 5, 2009

SAS Certified Base Programmer 50 Questions (15)

The following SAS program is submitted: data work.building; code=’DAL523′; code=’SANFRAN604′; code=’HOUS731′; run; Which one of the following is the length of the code variable? a. 6 b. 7 c. 10 d. 20

By admin | August 5, 2009

SAS Certified Base Programmer 50 Questions (14)

Which one of the following SAS programs creates a variable named City with a value of Chicago? a. data work.airports; AirportCode=’ord’; if AirportCode=’ORD’ City=’Chicago’; run; b. data work.airports; AirportCode=’ORD’; if AirportCode=’ORD’ City=’Chicago’; run; c. data work.airports; AirportCode=’ORD’; if AirportCode=’ORD’ then City=’Chicago’; run; d. data work.airports; AirportCode=’ORD’; if AirportCode=’ORD’; then City=’Chicago’; run;

By admin | August 5, 2009

SAS Certified Base Programmer 50 Questions (13)

The following SAS program is submitted: data names; title=’EDU’; if title=’EDU’ then Division=’Education’; else if title=’HR’ then Division=’Human Resources’; else Division=’Unknown’; run; Which one of the following represents the value of the variable Division in the output data set? a. Educatio b. Education c. Human Re d. Human Resources

By admin | August 5, 2009

SAS Certified Base Programmer 50 Questions (12)

The following SAS program is submitted: proc sort data=work.test; by fname descending salary; run; Which one of the following represents how the observations are sorted? a. The data set Work.Test is sorted in ascending order by both Fname and Salary values. b. The data set Work.Test is sorted in descending order by both Fname and […]

By admin | July 28, 2009

SAS Certified Base Programmer 50 Questions (11)

The following program is submitted: proc contents data=sasuser.houses; run; The exhibit below contains partial output produced by the CONTENTS procedure. Data Set Name SASUSER.HOUSES Observations 15 Member Type DATA Variables 6 Engine V9 Indexes 0 Created Tuesday, April 22, 2003 03:09:25 PM Observation Length 56 Last Modified Tuesday, April 22, 2003 03:09:25 PM Deleted Observations […]