Respuesta :
The correct boolean expression which correctly represents the conditions and evaluates to true ls the option B.
Using the following boolean evaluation rule :
- T or T = T
- T or F = T
- T and F = F
((age ≥ 13) OR (grade ≥ 9)) AND (age ≤ 18)
(T or T) and F ( less than 18)
T and F = False
((age ≥ 13) OR (grade ≥ 9)) AND (age < 18)
(T or T) and T
T and T = True
- The third option is wrong as the age must be less than 18
- Fourth option is wrong as the second operator should be AND
Therefore, the correct option is B.
Learn more :https://brainly.com/question/14942950