Let's look back at ||. Which of these will return true?

bool ourBool(!!!false || 100 == 100);bool ourBool(!!false || 100 != 100);bool ourBool = (200 * 3) > 100 || 3 > 5;bool ourBool = !1 || 1;

Great work! Remember, || means or. It checks that at least one of the expressions are true.

Oops! Remember, || means or. It checks that at least one of the expressions are true.