Demo Basic Digital Design

0 of 19 lessons complete (0%)

[Demo] NAND, NOR, XNOR Gates

🚀 Enroll in the full course now 🚀

What are NAND, NOR, and XNOR Gates ?

NAND, NOR, and XNOR gates are variations of the basic logic gates (AND, OR, and XOR) combined with an inverter. Each of these gates has distinct characteristics:

  1. NAND Gate: The NAND (NOT AND) gate is the inverse of an AND gate. It outputs false (0) only when all its inputs are true (1).
  2. NOR Gate: The NOR (NOT OR) gate is the inverse of an OR gate. It outputs true (1) only when all its inputs are false (0).
  3. XNOR Gate: The XNOR (Not eXclusive OR) gate is the inverse of an XOR gate. It outputs true (1) when its inputs are equal (both true or both false).

The truth tables for these gates are derived by inverting the output of their respective basic gates. The little circle after the symbol represent the inverter.

nand_gate
The Symbol of Nand Gate
Input AInput BOutput
001
011
101
110
Truth Table of NAND Gate
nor_gate
The Symbol of NOR Gate
Input AInput BOutput
001
010
100
110
Truth Table of NOR Gate
xnor_gate
The symbol of XNOR gate
Input AInput BOutput
001
010
100
111
Truth Table of XNOR Gate