Quiz title : Set - 001 - Part 04
Question 1 of 10



The contents of the raw data file SIZE are listed below:;
----I----
10---I----20---I----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?