Introduction to Logic Gates
Logic gate serve as a building block to digital logic circuit using combinational
logic. Most logic data have two inputs and one output.
At any given moment, every terminal is in one of the binary conditions;
low(0) or high(1), represented by different voltage levels.
In most logic gates, the low state is approximately zero volts,
while the high state is approximately five volts positive.
Some circuits may have only a few logic gates while others such as
microprocessor may have millions of them.
Types Of Logic Gates
AND Gate:AND Gate is a logic gate whose output is 1 if all it inputs are 1, otherwise 0.
The Expression for AND Gate is given as
C=A.B
OR Gate:OR Gate is a logic gate whose output is 1 if any of its input is 1, otherwise 0 i.e if all the input is 0 the output will be 0. The expression for OR Gate is given as
C=A+B
NOT Gate:NOT Gate is a logic gate whose output is an inverse of its input. i.e if input is 0
the output would be 1. However unlike others, NOT Gate has just 1 input. The expression for NOT Gate
is given as
C=A'
C=A'.B'
C=A'+B' or C=(A+B)'
C=A'B+AB'
C=AB+A'B'
No comments:
Post a Comment