The correct answers are (B) and (C).
(num > 15) OR (num = 15)
NOT (num < 15)
1. (B) (num > 15) OR (num = 15)
This expression is true if either "num is greater than 15" or "num is equal to 15", satisfying the condition of "num ≥ 15".
2. (C) NOT (num < 15)
This expression uses De Morgan's Law, which states that the negation of an inequality can be expressed as the opposite inequality with swapped signs. Therefore, "NOT (num < 15)" is equivalent to "num ≥ 15".