

MCQOPTIONS
Saved Bookmarks
1. |
What is the output of this program? 1. class Output 2. { 3. public static void main(String args[]) 4. { 5. Double i = new Double(257.5); 6. Double x = i.MIN_VALUE; 7. System.out.print(x); 8. } 9. } |
A. | 0 |
B. | 4.9E-324 |
C. | 1.7976931348623157E308 |
D. | None of the mentioned |
Answer» C. 1.7976931348623157E308 | |