Logic Gates
Logic Gates
Logic gates are an important concept if you are studying electronics. These are important digital
devices that are mainly based on the Boolean function. Logic gates are used to carry out logical
operations on single or multiple binary inputs and give one binary output. In simple terms, logic
gates are the electronic circuits in a digital system.
There are several basic logic gates used in performing operations in digital systems. The
common ones are
OR Gate
AND Gate
NOT Gate
XOR Gate
Additionally, these gates can also be found in a combination of one or two. Therefore, we get
other gates, such as NAND Gate, NOR Gate, E-XOR Gate and E-XNOR Gate.
OR Gate
OR gate is an electronic circuit which produce high output when one of the input is high
otherwise output will be low.
A B Y
0 0 0
0 1 1
1 0 1
1 1 1
AND Gate
AND gate is an electronic circuit which produce the high output when both the input is high
otherwise output will be low.
A B Y
0 0 0
0 1 0
1 0 0
1 1 1
NOT Gate
Not gate is an electronic circuit which produces the high output when the input is low and
produces the low output when the input is high.
The Boolean expression is Y= ¯A
A Y
0 1
1 0
NAND Gate
NAND gate is an electronic circuit which produce the low output when all the input is high
otherwise the output will be high. It is the combination of NOT gate and AND gate.
Truth table
A B Y
0 0 1
0 1 1
1 0 1
1 1 0
NOR Gate
NOR gate is the electronic circuit which produce the high output when all the input is low
otherwise the output will be low. It is the combination of OR and NOT gates.
A B Y
0 0 1
0 1 0
1 0 0
1 1 0
A B Y
0 0 0
0 1 1
1 0 1
1 1 0
A B Y
0 0 1
0 1 0
1 0 0
1 1 1