To store the numeric value 8.5778 you must use ________ data type. *
Integer
Float
Boolean
Double
Answers
Answer:
Boolean
Explanation:
hope you help it.
MARK AS BRAINLIST
To store the numeric value 8.5778 you must use float data type.
Float:
Values with decimal points are stored using the FLOAT data type. It's a single-precision number that represents a 32-bit floating-point number.
Explanation for incorrect options:
Integer:
An integer is a data type for storing whole numbers. So we cannot store the numeric value 8.5778 in the integer data type.
Boolean:
True and false values are stored in the Boolean data type. So we cannot store the numeric value 8.5778 in the integer data type.
Double:
Double is a 64-bit data type and variable that is used to store large or real numbers with fractional values. When compared to float, it can hold more data.
Hence, The float data type is required to store the numeric value 8.5778.