A
Q. 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));
}
}
- Correct Answer - Option(D)
- Views: 22
- Filed under category Java
- Hashtags:
Discusssion
Login to discuss.