SAS_Institute
A00-201 · Question #21
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'…
The correct answer is D. ' ' (missing character value). See the full explanation below for the reasoning.
Question
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?
Options
- Atable
- Btable
- C..(missing numeric value)
- D' ' (missing character value)
How the community answered
(50 responses)- A4% (2)
- B14% (7)
- C6% (3)
- D76% (38)
Community Discussion
No community discussion yet for this question.