AND vs NAND vs OR vs NOR Logic Gates: Truth Tables and Symbols

logic gate
truth table
digital circuit
and gate
or gate

This page compares AND, NAND, OR, and NOR gates, covering their truth tables and logic symbols. Digital logic circuits are largely built using basic logic gates like AND and OR. NAND and NOR gates are derived from AND and OR gates, respectively.

  • The inputs (input-1, input-2) can be considered as logical values (True or False).
  • We can also think of the inputs as voltage (True) or Ground (False).
  • The output of the gate will also be voltage (true) or ground (false).

AND Logic Gate

AND logic gate

Figure 1: AND gate logic symbol

The AND gate is an electronic circuit that outputs true (1) only if all its inputs are true. A dot (•) is used to represent the AND operation (A•B).

Figure 1 shows the AND logic gate symbol, and Table 1 presents the truth table:

Input-1Input-2Output
000
010
100
111

Table 1: AND gate truth table

NAND Logic Gate

NAND logic gate

Figure 2: NAND gate logic symbol

The NAND gate is essentially a NOT-AND gate, equivalent to an AND gate followed by a NOT gate. The output of a NAND gate is true if any of its inputs are false. The symbol is an AND gate with a small circle on the output terminal, representing inversion.

Figure 2 depicts the NAND logic gate symbol, and Table 2 shows its truth table:

Input-1Input-2Output
001
011
101
110

Table 2: NAND gate truth table

OR Logic Gate

OR logic gate

Figure 3: OR gate logic symbol

The OR gate is an electronic circuit that outputs true (1) if one or more of its inputs are true. A plus (+) sign is used to represent the OR operation.

Figure 3 illustrates the OR logic gate symbol, and Table 3 presents its truth table:

Input-1Input-2Output
000
011
101
111

Table 3: OR gate truth table

NOR Logic Gate

NOR logic gate

Figure 4: NOR gate logic symbol

The NOR gate is a NOT-OR gate, equivalent to an OR gate followed by a NOT gate. The output of a NOR gate is false if any of its inputs are true. The symbol is an OR gate with a small circle on the output, representing inversion.

Figure 4 shows the NOR logic gate symbol, and Table 4 displays its truth table:

Input-1Input-2Output
001
010
100
110

Table 4: NOR gate truth table

Digital Circuits Interview Questions and Answers

Prepare for your digital circuits interview with these 10 key Q&As covering logic gates, flip-flops, combinational/sequential logic, multiplexers, counters, and more.

digital circuit
interview question
logic gate
CMOS Transistor Logic Circuits Explained

CMOS Transistor Logic Circuits Explained

Learn about CMOS transistors (NMOS & PMOS) and their role in building digital logic gates like inverters, AND, NAND, OR, NOR, XOR, and XNOR gates.

cmos
transistor
logic gate
Latch vs. Flip-Flop: Key Differences Explained

Latch vs. Flip-Flop: Key Differences Explained

Understand the core differences between latches and flip-flops in digital circuits, their triggering mechanisms, and when to use each for optimal performance.

latch
flip-flop
digital circuit