By admin | August 10, 2009

SAS Certified Base Programmer 50 Questions (41)

A raw data file is listed below.

1---+----10---+----20---+---
01/05/1989    Frank     11
12/25/1987    June      13
01/05/1991    Sally      9

The following SAS program is submitted using the raw data file as input:

data work.family;
    infile 'file-specification';
    input @1 date_of_birth mmddyy10.
           @15 first_name $5.
           @25 age 3;
run;

proc print data=work.family noobs;
run;

Which one of the following is the result?

a. The program executes, but the age values are missing in the output.
b. The program executes, but the date values are missing in the output.
c. The program fails to execute because the age informat is coded incorrectly.
d. The program fails to execute because the date informat is coded incorrectly.

One comment | Add One

  1. admin - 08/10/2009 at 10:02 am

    A

Leave a Comment

Leave a Reply

Your email address will not be published.