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