Boolean basic and non-basic operators
Besides the basic Boolean operators:
AND (·), OR (+) and NOT, there are also
NAND (), NOR (
) and XOR (A
B) and they behave as:
A |
B |
A+B |
|
![]() |
![]() |
![]() |
A |
0 |
0 |
0 |
0 |
1
|
1 |
1 |
0 |
0 |
1 |
1 |
0 |
1 |
0 |
1 |
1 |
1 |
0 |
1 |
0 |
0 |
0 |
1 |
1 |
1 |
1 |
1 |
1 |
0 |
0 |
0 |
0 |



