Computer Applications
State one difference between the floating point literals float and double.
Values & Data Types Java
ICSE 2014
17 Likes
Answer
| float literals | double literals |
|---|---|
| float literals have a size of 32 bits so they can store a fractional number with around 6-7 total digits of precision. | double literals have a size of 64 bits so they can store a fractional number with 15-16 total digits of precision. |
Answered By
4 Likes
Related Questions
Which of the following is an escape sequence character in Java?
/n\t/t//n
Consider the array given below:
char ch[] = {'A','E','I','O', 'U'};Write the output of the following statements:
System.out.println(ch[0]*2);:- 65
- 130
- 'A'
- 0
The size of '\n' is:
- 2 bytes
- 4 bytes
- 8 bytes
- 16 bytes
The number of bytes occupied by a character array of four rows and three columns are:
- 12
- 24
- 96
- 48