Q5
Single choice
Given the contents of the raw data file TYPECOLOR:
----I----10---I----20---I----30
Daisyyellow
The following SAS program is submitted:
data flowers;
infile `typecolor';
input type$ 1-5+1 color$;
run;
What are the values of the variables TYPE and COLOR?