about summary refs log tree commit diff
path: root/usth/ICT2.2/labwork/1/logic-xor-table.md
diff options
context:
space:
mode:
Diffstat (limited to 'usth/ICT2.2/labwork/1/logic-xor-table.md')
-rw-r--r--usth/ICT2.2/labwork/1/logic-xor-table.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/usth/ICT2.2/labwork/1/logic-xor-table.md b/usth/ICT2.2/labwork/1/logic-xor-table.md
new file mode 100644
index 0000000..e955d5b
--- /dev/null
+++ b/usth/ICT2.2/labwork/1/logic-xor-table.md
@@ -0,0 +1,8 @@
+# Logical Exclusive Or Table
+
+|   a   |   b   | a ^ b |
+| ----- | ----- | ----- |
+| false | false | false |
+| false | true  | true  |
+| true  | false | true  |
+| true  | true  | false |