boolean x = true;
boolean y = false;
boolean z = true;
boolean result = x && y || z;
True
False
Compilation error
Runtime error