151k views
5 votes
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))

User SerjG
by
5.3k points

1 Answer

1 vote

Answer:

(NOT(bad < 3)) AND (NOT(bad > 7)), (bad ≥ 3) AND (bad ≤ 7)

Step-by-step explanation:

User Enenen
by
4.7k points