The contents of the raw data file PRODUCT are listed below:
----|----10---|----20---|----30
24613 $25.31
The following SAS program is submitted:
data inventory;
infile 'product';
input idnum 5. @10 price;
run;
Which one of the following is the value of the PRICE variable?
A. No value is stored as the program fails to execute due to errors.
B. $25.31
C. 25.31
D. . (missing numeric value)
----|----10---|----20---|----30
24613 $25.31
The following SAS program is submitted:
data inventory;
infile 'product';
input idnum 5. @10 price;
run;
Which one of the following is the value of the PRICE variable?
A. No value is stored as the program fails to execute due to errors.
B. $25.31
C. 25.31
D. . (missing numeric value)
No comments:
Post a Comment