Logic_Gates

Logic Gates

Normal logic behind the gates.
Where
1 = TRUE | True | true
0 = FALSE | False | false

OR

X Y AND(X,Y)

0 0 0
0 1 1
1 0 1
1 1 1

OR logic

AND

X Y AND(X,Y)

0 0 0
0 1 0
1 0 0
1 1 1

XOR

X Y AND(X,Y)

0 0 0
0 1 1
1 0 1
1 1 0

NAND

/logic_gates.png

Image Source: study.com | nand-nor-xor-logic-gates

Mind Map

Math bitwise operations