Q. What is the output of the Java code snippet?
Code:int a=20, b=10; boolean c = a>=10 & b<20; System.out.println(c);
β
Correct Answer: (B)
true
int a=20, b=10; boolean c = a>=10 & b<20; System.out.println(c);
You must be Logged in to update hint/solution