These tables show the values of and, or, and not. The two operands of and and or, and the single operand of not, are Boolean variables or expressions.
x | y | x and y | x or y | not x | not y |
---|---|---|---|---|---|
True | True | True | True | False | False |
True | False | False | True | False | True |
False | True | False | True | True | False |
False | False | False | False | True | True |
|
ECS 235A, Computer and Information Security Version of September 29, 2021 at 11:31PM
|
You can also obtain a PDF version of this. |