Glossary / XOR Logic Gate
Term: XOR Logic Gate
XOR is a type of logic gate.
Exclusive OR. Only one input is allowed to be positive (1 or ON) to give a positive output (1). If both inputs are positive (1) then there is a negative outcome (0, or OFF).

XOR gate truth table
| Input A | Input B | Output Z |
|---|---|---|
| 0 | 0 | 0 |
| 0 | 1 | 1 |
| 1 | 0 | 1 |
| 1 | 1 | 0 |


