Keyword | Definition |
---|---|
AND | Operator which only returns True if both operands are True. |
Logical Operators | operators used in programming to manipulate Boolean values |
NOT | Reverses the logical state of its operand. |
OR | Operator which returns True if at least one of the operands is True. |
XOR | Only returns True if either operand is True, but not both. |