Bitwise Operator

Input I:
Input II:
Output:

OR GATE

or
At the bit level, there are four possibilities,
0 + 0 = 0
0 + 1 = 1
1 + 0 = 1
1 + 1 = 1

XOR GATE

or
At the bit level, there are four possibilities,
0 ⊕ 0 = 0
0 ⊕ 1 = 1
1 ⊕ 0 = 1
1 ⊕ 1 = 0

NAND GATE

or
At the bit level, there are four possibilities,
0 ↑ 0 = 1
0 ↑ 1 = 1
1 ↑ 0 = 1
1 ↑ 1 = 0

AND GATE

or
At the bit level, there are four possibilities,
0 . 0 = 0
0 . 1 = 0
1 . 0 = 0
1 . 1 = 1

NOR GATE

or
At the bit level, there are four possibilities,
0 ↓ 0 = 1
0 ↓ 1 = 0
1 ↓ 0 = 0
1 ↓ 1 = 0

NOT GATE

or
At the bit level, there are four possibilities,
¬0 = 1
¬1 = 0

Copyright © 2023 Invootechnica Global Pvt. Ltd. All rights reserved.