1/15
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai |
|---|
No analytics yet
Send a link to your students to track their progress
!(c >= d) is equivalent to
(c < d)
!(c > d) is equivalent to
(c <= d)
!(c == d) is equivalent to
(c != d)
!(c < d) is equivalent to
(c >= d)
!(c != d) is equivalent to
(c == d)
!(c <= d) is equivalent to
(c > d)
!(true && true)
false
!(false && true)
true
!(true && false)
true
!(false && false)
true
!true || !true
false
!false || !true
true
!true || !false
true
!false || !false
true
!(a && b) is equivalent to
!a || !b
!(a || b) is equivalent to
!a && !b