295,370 views
11 votes
11 votes
The boolean expression:

!((A < B) || (C > D))
is equivalent to which of the following expressions?


(A >= B) && (C <= D)

(A >= B) || (C <= D)

(A > B) || (C < D)

(A > B) && (C < D)

(A < B) && (C > D)

User Anurag Kumar
by
2.8k points

1 Answer

24 votes
24 votes

Answer:

(A > B) || (C < D)

Step-by-step explanation:

User WaughWaugh
by
2.6k points