Q84
What will be the output of the following Java code? class booloperators public static void main(String args[]) boolean var1 = true; boolean var2 = false; System.out.println((var1 & var2));
A.
0
B.
1
C.
true
D.
false
AnswerAnswer: Option D
Solution
Answer: Option D
No explanation is given for this question Let's Discuss on Board