Multiple choice

AND 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
A Correct answer
Explanation

The AND operator in programming and logic returns TRUE only when ALL conditions being evaluated are true. If even one condition is false, the entire AND expression becomes false. Option A correctly states this fundamental behavior.