Multiple choice

OR operator returns TRUE when

  1. both the specified conditions are true

  2. any one of the specified conditions is true

  3. none of the specified conditions is true

  4. both (1) and (2)

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

The OR operator returns TRUE when at least one of the conditions is TRUE. This includes cases where either one condition is TRUE, or both conditions are TRUE simultaneously. Option D correctly states this behavior by combining both scenarios.