Boolean Expressions - AP Computer Science Principles

Card 1 of 30

0
Didn't Know
Knew It
0
1 of 3029 left
Question

Identify the result: $false \text{ AND } (true \text{ OR } false)$

Tap to reveal answer

Answer

false. Parentheses evaluate first: $(true \text{ OR } false) = true$, then $false \text{ AND } true = false$.

← Didn't Know|Knew It →