1Z0-829

Full exam simulation

1:30:00
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?

0 of 47 answered