What is demonstrated by this Java code involving multiple boolean variables?
boolean a = true, b = false;
boolean c = a || b && !a;
What is demonstrated by this Java code involving multiple boolean variables?
boolean a = true, b = false;
boolean c = a || b && !a;