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 |
|---|---|---|---|---|
| True | True | True | True | False |
| True | False | False | True | False |
| False | True | False | True | True |
| False | False | False | False | True |
|
Last modified: Version of September 28, 2019 at 11:15PM Fall Quarter 2019 You can get a PDF version of this |