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); boolean x = i.isNaN(); System.out.print(x); } } |
| A. | True |
| B. | False |
| C. | 0 |
| D. | 1 |
| Answer» C. 0 | |