By admin | August 28, 2009

SAS Certified Base Programmer 123 Questions (8)

The contents of the raw data file TYPECOLOR are listed below:

----|----10---|----20---|----30
daisyyellow

The following SAS program is submitted:

data flowers;
infile'typecolor';
input type $ 1-5 +1 color $;
run;

Which one of the following represents the values of the variables TYPE and COLOR?

A. type color
daisy yellow
B. type color
daisy ellow
C. type color
daisyyellow (missing character value)
D. No values are stored as the program fails to execute due to syntax errors.

One comment | Add One

  1. admin - 08/28/2009 at 3:01 pm

    B

Leave a Comment

Leave a Reply

Your email address will not be published.