SAS_Institute
A00-211 · Question #54
The contents of the raw data file SIZE are listed below: --------10-------20-------30 72 95 The following SAS program is submitted: data test; infile 'size'; input @1 height 2. @4 weight 2; run…
The correct answer is A. 2. See the full explanation below for the reasoning.
Question
The contents of the raw data file SIZE are listed below:
--------10-------20-------30 72 95 The following SAS program is submitted:
data test; infile 'size'; input @1 height 2. @4 weight 2; run; Which one of the following is the value of the variable WEIGHT in the output data set?
Options
- A2
- B72
- C95
- D. (missing numeric value)
How the community answered
(26 responses)- A73% (19)
- B15% (4)
- C8% (2)
- D4% (1)
Community Discussion
No community discussion yet for this question.