

MCQOPTIONS
Saved Bookmarks
1. |
Choose the correct implementation of floating point literals in the exponential form in Java. |
A. | float a = 12.0e2f; //1200.0 |
B. | float a = 100.0e-2f; // 1.0 |
C. | float a = 123.456e-21f; |
D. | All the above |
Answer» E. | |