Compound Boolean Expression Evaluation
Given integer variables a, b, and c, which of the following conditions guarantees that the expression (a * b < 0) || (a < c && b < c) will evaluate to false?
A
a < c or b < c
B
a < c and b < c
C
none of the above
D
a > c and b > c
Question Leaderboard
Not enough data yet to show leaderboard.
APFIVE