This gate is also known as Exclusive OR Gate. It is a combinational Gate. This gate receives two or more than two inputs but gives us only one output. This circuit gives a high (1) or true output if odd number of high inputs are applied. An XOR gate symbolized as ⊕ in a digital equations. If A and B are the inputs then output will be A⊕B.
XOR Gate | ||
INPUT | OUTPUT | |
A | B | C |
0 | 0 | 0 |
0 | 1 | 1 |
1 | 0 | 1 |
1 | 1 | 0 |
This gate is also known as Exclusive NOR Gate. It is a combinational Gate. It apply a NOT gate at the output of XOR Gate. This gate receives two or more than two inputs but gives us only one output. This circuit gives a high (1) or true output if even number of high inputs are applied. An XOR gate symbolized as ⊕ in a digital equations. If A and B are the inputs then output will be A⊕B.
XNOR Gate | ||
INPUT | OUTPUT | |
A | B | C |
0 | 0 | 1 |
0 | 1 | 0 |
1 | 0 | 0 |
1 | 1 | 1 |