There are four boolean variables:
boolean b1 = true;
boolean b2 = false;
boolean b3 = true;
boolean b4 = false;
What is the result of the following expression?
b1 && (b2 || (b3 || b4));There are four boolean variables:
boolean b1 = true;
boolean b2 = false;
boolean b3 = true;
boolean b4 = false;
What is the result of the following expression?
b1 && (b2 || (b3 || b4));Create a free account to access the full topic