MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of this program? class Output { public static void main(String args[]) { Integer i = new Integer(257); float x = i.floatValue(); System.out.print(x); } } |
| A. | 0 |
| B. | 1 |
| C. | 257 |
| D. | 257.0 |
| Answer» E. | |