What number of digits that can be accurately stored in a float (based on the IEEE Standard 754)?
-
6
-
38
-
An unlimited number
-
None Of the above
A
Correct answer
Explanation
IEEE 754 single-precision float (32-bit) provides approximately 6-7 significant decimal digits of precision. This is a standard fact in computing - the mantissa uses 23 bits plus implicit leading 1, giving about 7 decimal digits. Option A's '6' is the closest correct answer among the choices. Options B (38) would be double-precision, and C is impossible due to finite representation.