Quiz title : Set - 001 - Part 03
Question 1 of 10
The contents of the raw data file FURNITURE are listed below:
----|----10----|----20----|----30
chair,,table
chair,couch,table
The following SAS program is submitted:;
data stock;
infile "furniture" dsd;
input item1$ item2$ item3$;
run;
Which one of the following is the value of the variable named ITEM2 in the first observation of the output data set?
The contents of the raw data file FURNITURE are listed below:
----|----10----|----20----|----30
chair,,table
chair,couch,table
The following SAS program is submitted:;
data stock;
infile "furniture" dsd;
input item 1 $ item2 $ item3 $;
run;
Which one of the following is the value of the variable named ITEM2 in the first observation of the output data set?