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
c < a && b == c
B
a > b && b != c
C
a <= b && c < a
D
a > b && c < a
Question Leaderboard
Not enough data yet to show leaderboard.
