Logic Gates

Posted

in

by

Tags:

The logic gates are basic building blocks for any digital electronic computer.

The AND, OR and NOT gates can be made from types of technology such as TTL, MOSFET, FET, or vacuum Tubes etc.

AND Gate

ABoutput (Y = A.B)
001
100
010
110
The truth table for AND gate

OR Gate

AB output (Y = A + B)
000
011
101
111
The truth table for OR gate

NOT Gate

AO/p = A’
01
10
The truth table for NOT gate

NAND Gate

AB output (Y = (A.B)’ )
001
011
101
110
The truth table for the NAND gate

NAND gate is known as a universal gate. All the other logic circuits can be derived from it.

NOR Gate

AB output (Y = (A+B)’ )
001
010
100
110
The truth table for NOR gate

NOR gate is known as a universal gate. All the other logic circuits can be derived from it.

XOR Gate

AB output (Y = A’B + AB’ )
000
011
101
110
The truth table for XOR gate

XNOR Gate

AB output (Y = AB + A’B’ )
001
010
100
111
The truth table for XNOR gate

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *