Evaluating a Complex Boolean Expression
Given that a, b, and c are integer variables, consider the following boolean expression.
!( (a > b && c < a) || (b == c) )
Which of the following conditions guarantees that the expression evaluates to true?
A
a > b && c < a
B
a <= b && c < a
C
a > b && b != c
D
c < a && b == c
Question Leaderboard
Not enough data yet to show leaderboard.
APFIVE