1
Controlling Program Flow
easy
Consider the following code:
```java boolean a = true, b = false, c = false;
if (a && b || c) {System.out.println("True");
} else {System.out.println("False");
}```
What is the output?
1Z0-829
Full exam simulation
Controlling Program Flow
Consider the following code:
```java boolean a = true, b = false, c = false;
if (a && b || c) {System.out.println("True");
} else {System.out.println("False");
}```
What is the output?