Computer Science, asked by someone68, 2 months ago

Which datatype represent floating point value? ​

Answers

Answered by MissPhenomenal
2

\huge \purple A \purple N \purple s \purple W \purple e \purple \R :-

  • The FLOAT data type stores double-precision floating-point numbers with up to 17 significant digits. FLOAT corresponds to IEEE 4-byte floating-point, and to the double data type in C. The range of values for the FLOAT data type is the same as the range of the C double data type on your computer.
Answered by Anonymous
3

Answer:

The floating-point family of data types represents number values with fractional parts. They are technically stored as two integer values: a mantissa and an exponent.

Discussion

Language. Python

Reserved Word. float()

Size. 64 bits / 8 bytes

Similar questions