Archive for September, 2009

By admin | September 11, 2009

SAS Certified Base Programmer 123 Questions (43)

On which portion(s) of a SAS data set does the PRINT procedure report? A. the data portion only B. the descriptor portion only C. the descriptor portion and the data portion D. neither the data portion nor the descriptor portion

By admin | September 11, 2009

SAS Certified Base Programmer 123 Questions (42)

Which one of the following SAS procedures displays the data portion of a SAS data set? A. PRINT B. FSLIST C. CONTENTS D. DATASETS

By admin | September 11, 2009

SAS Certified Base Programmer 123 Questions (41)

The following SAS program is submitted: proc datasets lib = sasuser; contents data = class varnum; quit; Which one of the following is the purpose of the VARNUM option? A. to print a list of variable names B. to print the total number of variables C. to print a list of the variables in alphabetic […]

By admin | September 11, 2009

SAS Certified Base Programmer 123 Questions (40)

The following SAS program is submitted: proc contents data = sasuser.airplanes; run; Which one of the following is produced as output? A. the data portion of every data set in the SASUSER library B. the data portion of the data set SASUSER.AIRPLANES only C. the descriptor portion of every data set in the SASUSER library […]

By admin | September 11, 2009

SAS Certified Base Programmer 123 Questions (39)

A raw data file is listed below: —-|—-10—|—-20—|—-30 John McCloskey 35 71 June Rosesette 10 43 TinekeJones 9 37 The following SAS program is submitted using the raw data file as input: data work.homework; infile ‘file-specification’; input name $ age height; if age LE 10; run; How many observations will the WORK.HOMEWORK data set contain? […]