about summary refs log tree commit diff
path: root/usth/ICT2.2/labwork/1/logic-xor-table.md
blob: e955d5bd5d293e4ea4289fa64a355a7507533ad6 (plain) (blame)
1
2
3
4
5
6
7
8
# Logical Exclusive Or Table

|   a   |   b   | a ^ b |
| ----- | ----- | ----- |
| false | false | false |
| false | true  | true  |
| true  | false | true  |
| true  | true  | false |