1.

What is the output of this program? class isNaN_output { public static void main(String args[]) { Double d = new Double(1 / 0.); boolean x = d.isNaN(); System.out.print(x); } }

A. 0
B. 1
C. True
D. False
Answer» E.


Discussion

No Comment Found