A
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);
boolean c = a>=10 & b<20;
System.out.println(c);
- Correct Answer - Option(B)
- Views: 13
- Filed under category Java
- Hashtags:
Discusssion
Login to discuss.