Page 1 of 1

What will be the output of the following Java statement?

Posted: Wed Jul 13, 2022 7:45 pm
by answerhappygod
class output { public static void main(String args[]) { double a, b,c; a = 3.0/0; b = 0/4.0; c=0/0.0;  System.out.println(a); System.out.println(b); System.out.println(c); } }
a) Infinity
b) 0.0
c) NaN
d) all of the mentioned