MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of this program?public class isinfinite_Example { public static void main(String args[]) { Double num = new Double(1 / 0.); boolean p = num.isInfinite(); System.out.print(p); } } |
| A. | true true |
| B. | false false |
| C. | false |
| D. | true |
| E. | None of these |
| Answer» E. None of these | |