0% found this document useful (0 votes)
34 views12 pages

Logic Gates Useful Power Point Contents

The document discusses the basic digital logic gates including OR, AND, NOT, NAND, NOR, XOR and XNOR gates. It provides the truth tables and definitions for each gate, explaining their inputs, outputs and functions. Advantages of using logic gates are also listed.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
34 views12 pages

Logic Gates Useful Power Point Contents

The document discusses the basic digital logic gates including OR, AND, NOT, NAND, NOR, XOR and XNOR gates. It provides the truth tables and definitions for each gate, explaining their inputs, outputs and functions. Advantages of using logic gates are also listed.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 12

13-Nov-18

LOGIC GATES
13-Nov-18

Definition
• Digital logic is the representation of electrical
signals and sequences of digital circuit through
numbers.
• Signal or Input will be 0 or 1
• Inputs may be one, two or more
• Implementation of Number Systems
• Basic Concept
• Logic Gates
13-Nov-18

Logic
Gates
• A logic gate is an elementary building block of a digital circuit.
• Most logic gates have two inputs and one output.
• At any given moment, every terminal is in one of the two binary
conditions low (0) or high (1), represented by different voltage
levels.
13-Nov-18

What are the basic digital logic


gates ?
• Digital systems are said to be constructed by
using logic gates.
• These gates are the AND, OR, NOT, NAND, NOR,
XOR and XNOR gates.
• The basic operations are described below with the
help of truth tables.
13-Nov-18

OR
Gate:
• The OR gate is an electronic circuit that gives a high output (1) if
one or more of its inputs are high
• An OR gate is a digital logic gate with two or more inputs and one
output that performs logical operation. The output of an OR gate is
true when one or more of its inputs are true
• Truth Table
Symbol
X Z
Y X OR
0 0 0 Z
0 1 1
1 0 1 Y
Z = X | Y
1 1 1
13-Nov-18

AND
Gate:
• The AND gate is an electronic circuit that gives a high output
(1) only if all of its inputs are high
• An AND gate is a digital logic gate with two or more inputs and
one output that performs logical operation. The output of an
AND gate is true when both or all of its inputs are true
• Truth Table
Symbol AND

X Y Z
X
0 0 0
0 1 0 Z
1 0 0 Y
1 1 1

Z = X & Y
13-Nov-18

NOT
Gate:
• The NOT gate is an electronic circuit that gives a high output
(1) if input is low (0) and gives low (0) output if input is high (1).
• It simply invert the input
• Truth Table
Symbol
NO
X Y
X T
0 1 Y
1 0
Y = ~X
13-Nov-18

NAND
Gate:
• A NAND gate is a logic gate which produces an output which is
false only if all its inputs are true
• Its output is complement of an AND gate
• Truth Table
Symbol NAND
X
Y0 0 1 X
Z0 1 1 Z
1 0 1
1 1 0 Y

Z = ~(X & Y)
nand(Z,X,Y)
13-Nov-18

NOR
Gate:
• The NOR gate is a digital logic gate that produces logical high
output if both the inputs to the gate are low
• Its output is complement of an OR gate
• Truth Table
Symbol
X Y Z X
0 0 1 Z
0 1 0 Y
1 0 0
1 1 0 Z = ~(X | Y)
nor(Z,X,Y)
13-Nov-18

Exclusive-OR or XOR
Gate:
• The XOR gate is a digital logic gate that gives a true output
when the number of true inputs is odd
• When inputs are same the output low
• When inputs are different the output high
• Truth Table
Symbol
X Y XOR
X
0
Z 0 0 Z
Y
0 1 1
1 0 1 Z = X ^ Y
1 1 0 XOR(Z,X,Y)
13-Nov-18

XNOR or Exclusive-NOR
Gate:
• The XNOR gate is a digital logic gate whose function is the
logical complement of the exclusive OR gate
• The output of an XNOR gate is true when all of its inputs
are
true or when all of its inputs are false.
• Truth Symbol
Table
XNOR
X Y Z
X
0 0 1 Z
0 1 0 Y = ~(X ^ Y)
Z
1 0 0 Z = X ~^ Y
1 1 1 XNOR(Z,X,Y)
ADVANTAGES OF LOGIC GATES:
 It is generally very easy to reliably distinguish between
logic 1 or logic 0.
 The simplest flip-flop is the RS which is made up of two
gates.
 K-map is also designed by using logic gates. That
simplification helps when you start to connect gates to
implement the functions.
 These gates are also used in TTL and CMOS circuitry.

You might also like