Vidyalelo
Java Programming · Q28

Data Types and Variables

Programming · Java Programming · question 28

Q28

Which data type is used to store numbers with decimal points and less precision than double?

A.
float
Answer
B.
byte
C.
short
D.
long

Answer: Option A

Solution

Answer: Option A
Solution:
The correct answer is Option A: float.

In Java, the float data type is used to store numbers with decimal points and provides less precision than the double data type.

Here's the breakdown:

Option A: float - This is the correct data type for storing numbers with decimal points and less precision than double. It is a single-precision floating-point type.

Option B: byte - The byte data type is used to store small whole numbers (integers) without decimal points.

Option C: short - The short data type is used to store small whole numbers (integers) without decimal points.

Option D: long - The long data type is used to store large whole numbers (integers) without decimal points.

So, in Java, the data type used to store numbers with decimal points and less precision than double is float.