An inspector counts the number of bad apples in a crate.
A crate with fewer than 3 bad apples is marked excellent.
A crate with three to 7 bad apples is marked questionable.
A crate with more than 7 bad apples is marked spoiled.
Which of the AP exam expressions evaluates to true for questionable crates and false otherwise?
(NOT(bad < 3)) AND (NOT(bad > 7))
(bad ≥ 3) AND (bad ≤ 7)
(NOT(bad < 3)) AND (NOT(bad > 7)), (bad ≥ 3) AND (bad ≤ 7)
(NOT(bad < 3)) AND (NOT(bad > 7)), (NOT(bad < 3)) OR (NOT(bad > 7))