COMP LOGICAL OPERATOR Flashcards
1
Q
&&
A
AND
2
Q
!!
A
OR
3
Q
!
A
NOT
4
Q
Binary operator for conjunction; Result is TRUE if both operands are TRUE; otherwise, FALSE
A
&&, AND
5
Q
Binary operator for disjunction; Result is TRUE if at least one operand is TRUE; otherwise, FALSE
A
!!, OR
6
Q
Binary operator for disjunction; Result is TRUE if at least one operand is TRUE; otherwise, FALSE
A
! NOT