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.
Topics:
SAS Base Questions |
1 Comment »
B