1.

What is the output of this program? class bool_operator { public static void main(String args[]) { boolean a = true; boolean b = !true; boolean c = a | b; boolean d = a & b; boolean e = d ? b : c; System.out.println(d + " " + e); } }

A. false false
B. frue ture
C. frue false
D. false true
Answer» E.


Discussion

No Comment Found