medium
1 min read
NAND NOR
NAND NOR A NAND NOR gate is a basic logic gate that combines two binary inputs (A and B) into an output. The output is 1 if exactly one of the input val...
NAND NOR A NAND NOR gate is a basic logic gate that combines two binary inputs (A and B) into an output. The output is 1 if exactly one of the input val...
NAND NOR
A NAND NOR gate is a basic logic gate that combines two binary inputs (A and B) into an output. The output is 1 if exactly one of the input values is 1, and 0 otherwise.
Truth Table:
| A | B | NAND NOR |
|---|---|---|
| 0 | 0 | 1 |
| 0 | 1 | 0 |
| 1 | 0 | 0 |
| 1 | 1 | 0 |
Example:
Let's say we have two inputs, A and B, which are both equal to 1. Applying the NAND NOR gate to A and B will give us an output of 0, because exactly one of the inputs is 1