

MCQOPTIONS
Saved Bookmarks
1. |
What is the output of this program? class Output { public static void main(String args[]) { Double i = new Double(257.5); Double x = i.MAX_VALUE; System.out.print(x); } } |
A. | 0 |
B. | 1.7976931348623157E308 |
C. | 1.7976931348623157E30 |
D. | None of the mentioned |
Answer» C. 1.7976931348623157E30 | |