SAS_Institute
A00-201 · Question #31
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; Which…
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;
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
(28 responses)- A82% (23)
- B11% (3)
- C4% (1)
- D4% (1)
Community Discussion
No community discussion yet for this question.