SlideShare a Scribd company logo
1 of 28
Logic Gates

1
Page 1
Logic
• Formal logic is a branch of
mathematics that deals with
true and false values
instead of numbers.
• In 1840’s, George Boole
developed many Logic ideas.
•A logic gate performs a
logical operation on one or
more logic inputs and produces
a single logic output.

2
Page 2
The logic normally performed is
Boolean logic and is most commonly found
in digital circuits.
Logic gates are primarily implemented
electronically using diodes or transistors, but
can also be constructed using
electromagnetic relays (relay logic),
fluidic logic, pneumatic logic, optics,
molecules, or even mechanical elements.
In electronic logic, a logic level is
represented by a voltage or current,
depending on the type of electronic logic in
use.

Page 3
Logic Signals
There are a number of different systems for representing
binary information in physical systems. Here are a few.
A voltage signal with zero (0) corresponding to 0 volts and
one (1) corresponding to five or three volts.
A sinusoidal signal with zero corresponding to some
frequency, and one corresponding to some other
frequency.
A current signal with zero corresponding to 4 milliamps
and one corresponding to 20 milliamps.
And one last way is to use switches, OPEN for "0" and
CLOSED for "1".
(And there are more ways!)
Page 4
Boolean algebra is the algebra of two values. These are usually
taken to be 0 and 1, as we shall do here, although F and T, false
and true, etc. are also in common use.
Whereas elementary algebra is based on numeric operations
multiplication xy, addition x + y, and negation −x, Boolean
algebra is customarily based on logical counterparts to those
operations, namely :
(1) conjunction x∧y (AND)
(2) disjunction x∨y (OR)
(3) complement or negation ¬x (NOT).
In electronics:
AND is represented as a multiplication
OR is represented as an addition
NOT is represented with an overbar
Page 5
Basic logic gates
• Not
• And
• Or
• Nand
• Nor
• Xor
6
Page 6
Truth Table
A truth table is a good way to
show the function of a logic gate.
It shows the output states for
every possible combination of
input states. The symbols 0
(false) and 1 (true) are usually
used in truth tables.

Page 7
NOT
The output A is true when the input a is NOT true, the output is the inverse of
the input: a = NOT A
A NOT gate can only have one input. A NOT gate is also called an inverter.
Truth Table:
A

A

a
0

A
1

1

0

Page 8
AND
"If A AND B are both 1, then Q should be 1.“
(All or nothing.)
Logic Gate:

A

A*B

B

Truth Table:

A
0
A
Series Circuit:

A*B
0

0
1

1
0

0
0

1

B

B
0

1

1

A*B

Page 9
Three Input AND Gate
A

B

C

ABC

0

0

0

0

0

0

1

0

0

1

0

0

0

1

1

0

1

0

0

0

1

0

1

0

1

1

0

0

1

1

1

1

Page 10
OR
"If A is 1 OR B is 1 (or both are 1), then Q is 1."

Logic Gate:

A

A+B

B

Truth Table:

A
0

B

1
0

1
1

1

Parallel Circuit:

A+B
0

0
1

A

B
0

1

1

A+B
Page 11
• Because + and * are binary operations, they
can be cascaded together to OR or AND
multiple inputs.
A
B

A
B
C

C

A+B+C

A+B+C

A
B

A
B
C

ABC

ABC

Page 12
NAND and NOR Gates
• NAND and NOR gates can greatly simplify circuit diagrams.
NAND inverts the output of AND.
• NOR inverts the output of OR.
A
0
0

1

1

0

1

1

1

0

A
NOR

0

A↑ B
1

1

NAND

B

B

0

0

A↓ B
1

0

1

0

1

0

0

1

1

0
Page 13
XOR and XNOR Gates
XOR (exclusive OR) :"If either A OR B is 1, but NOT both, Q is 1."
A
0

0

A⊕ B
0

0

1

1

1

0

1

1

XOR

B

1

0

XNOR (exclusive NOR) : invert output of XOR
A
XNOR

B

A

B

0

0

1

0

1

0

1

0

0

1

1

1
Page 14
• Find the output of the following circuit

x+y
(x+y)y
y
__

• Answer: (x+y)y

15
Page 15
• Find the output of the following circuit

x
xy

xy

y

___
__

• Answer: xy

Page 16
Give the Boolean expression of the given circuit

x+y

(x+y)(xy)
xy
Answer:

xy

(x+y)(xy)
17
Page 17
•

Write the circuits for the following
Boolean algebraic expressions
__
a) x+y
x
x+y

18
Page 18
•

Write the circuits for the following
Boolean algebraic expressions
_______
b) (x+y)x
x+y

x+y

(x+y)x

19
Page 19
More about logic gates
• To implement a logic gate in hardware,
you use a transistor
• Transistors are all enclosed in an “IC”, or
integrated circuit
• The current Intel Pentium IV processors
have 55 million transistors!

20
Page 20
Flip-flops
• Consider the following circuit:

• What does it do?

21
Page 21
If you arrange the gates correctly, they will remember an input value. MEMORY
This simple concept is the basis of RAM (random access memory) in computers,
and also makes it possible to create a wide variety of other useful circuits.
Memory relies on a concept called feedback. That is, the output of a gate is fed back into the input.

• A flip-flop holds a single bit of memory
• In reality, flip-flops are a bit more
complicated
– Have 5 (or so) logic gates (transistors) per flipflop

• Consider a 1 Gb memory chip
– 1 Gb = 8,589,934,592 bits of memory
– That’s about 43 million transistors!

• In reality, those transistors are split into 9
ICs of about 5 million transistors each

22
Page 22
Exercises:
1.Give the Boolean expression of the given gate.
Answer: (A + B)C

2.Give the Boolean expression of the given gate.

Answer: A + BC + D

3.Draw a logic circuit for AB + AC.

Page 23
Exercises:
4.Draw a logic circuit for (A + B)(C + D) C.
5. Give the truth table for a 3-input (A,B & C) OR gate.
6. What type of logic gate's behavior does this truth table represent?

7.Give the Boolean expression of the given gate.

Page 24
Exercises:
8.Give the output expressions of the given gates.
a.

b.

c.

d.

e.

f.

Page 25
3.

AB + AC.

Answers to Exercises:
5.

3-input OR gate
ABC

4. (A + B)(C + D)C.

6. 3-input OR gate
7.

Page 26
Answers to Exercises:
8.

a.) (ABC)(DE).
b.) (ABC)+(DE).
c.) (R+S+T) (X+Y+Z).
d.) (R+S+T)+(X+Y+Z).
e.) (JK)(M + N).
f.) (AB) (M + N) (X + Y).

Page 27
---the end– 8-)

Page 28

More Related Content

What's hot

Decoders
DecodersDecoders
Decoders
Re Man
 

What's hot (20)

Logic gates
Logic gatesLogic gates
Logic gates
 
Logic gates
Logic gatesLogic gates
Logic gates
 
Basic Logic gates
Basic Logic gatesBasic Logic gates
Basic Logic gates
 
Logic gate
Logic gateLogic gate
Logic gate
 
Logic gate
Logic gateLogic gate
Logic gate
 
Latches and flip flop
Latches and flip flopLatches and flip flop
Latches and flip flop
 
Nand gate
Nand gateNand gate
Nand gate
 
Logic gate
Logic gateLogic gate
Logic gate
 
Logic gates - AND, OR, NOT, NOR, NAND, XOR, XNOR Gates.
Logic gates - AND, OR, NOT, NOR, NAND, XOR, XNOR Gates. Logic gates - AND, OR, NOT, NOR, NAND, XOR, XNOR Gates.
Logic gates - AND, OR, NOT, NOR, NAND, XOR, XNOR Gates.
 
Universal logic gate
Universal logic gateUniversal logic gate
Universal logic gate
 
Digital electronics logic families
Digital electronics logic familiesDigital electronics logic families
Digital electronics logic families
 
boolean algebra and logic simplification
boolean algebra and logic simplificationboolean algebra and logic simplification
boolean algebra and logic simplification
 
Parity generator & checker
Parity generator & checkerParity generator & checker
Parity generator & checker
 
Combinational circuits
Combinational circuitsCombinational circuits
Combinational circuits
 
Decoders
DecodersDecoders
Decoders
 
9. logic gates._rr
9. logic gates._rr9. logic gates._rr
9. logic gates._rr
 
Digital Electronics - Counters
Digital Electronics - CountersDigital Electronics - Counters
Digital Electronics - Counters
 
Digital logic gates and Boolean algebra
Digital logic gates and Boolean algebraDigital logic gates and Boolean algebra
Digital logic gates and Boolean algebra
 
Logic gates ppt
Logic gates pptLogic gates ppt
Logic gates ppt
 
latches
 latches latches
latches
 

Viewers also liked

Logic Gates Presentation
Logic Gates PresentationLogic Gates Presentation
Logic Gates Presentation
nad407
 
Basic logic gates
Basic logic gatesBasic logic gates
Basic logic gates
Kumar
 
3.bipolar junction transistor (bjt)
3.bipolar junction transistor (bjt)3.bipolar junction transistor (bjt)
3.bipolar junction transistor (bjt)
firozamin
 

Viewers also liked (8)

Electronics and Communication Engineering : Digital circuits, THE GATE ACADEMY
Electronics and Communication Engineering : Digital circuits, THE GATE ACADEMYElectronics and Communication Engineering : Digital circuits, THE GATE ACADEMY
Electronics and Communication Engineering : Digital circuits, THE GATE ACADEMY
 
Transistor as a switch
Transistor as a switch Transistor as a switch
Transistor as a switch
 
Logic Gates Presentation
Logic Gates PresentationLogic Gates Presentation
Logic Gates Presentation
 
Logic gates
Logic gatesLogic gates
Logic gates
 
Basic logic gates
Basic logic gatesBasic logic gates
Basic logic gates
 
transparent electronics ppt
transparent electronics ppttransparent electronics ppt
transparent electronics ppt
 
3.bipolar junction transistor (bjt)
3.bipolar junction transistor (bjt)3.bipolar junction transistor (bjt)
3.bipolar junction transistor (bjt)
 
transparent electronics
transparent electronicstransparent electronics
transparent electronics
 

Similar to LOGIC GATES

Similar to LOGIC GATES (20)

COMPUTER ORGANIZATION - Logic gates, Boolean Algebra, Combinational Circuits
COMPUTER ORGANIZATION - Logic gates, Boolean Algebra, Combinational CircuitsCOMPUTER ORGANIZATION - Logic gates, Boolean Algebra, Combinational Circuits
COMPUTER ORGANIZATION - Logic gates, Boolean Algebra, Combinational Circuits
 
Logic gates
Logic gatesLogic gates
Logic gates
 
Computer circuit logic
Computer circuit logicComputer circuit logic
Computer circuit logic
 
assignment_mathematics.pptx
assignment_mathematics.pptxassignment_mathematics.pptx
assignment_mathematics.pptx
 
Lecture 04-Digital logic gates.pptx
Lecture 04-Digital logic gates.pptxLecture 04-Digital logic gates.pptx
Lecture 04-Digital logic gates.pptx
 
Deld lab manual
Deld lab manualDeld lab manual
Deld lab manual
 
ICT Basic Logic Gates Lessons.pptx
ICT Basic Logic Gates Lessons.pptxICT Basic Logic Gates Lessons.pptx
ICT Basic Logic Gates Lessons.pptx
 
2th year iv sem de lab manual
2th year iv sem de lab manual2th year iv sem de lab manual
2th year iv sem de lab manual
 
Chapter04.ppt
Chapter04.pptChapter04.ppt
Chapter04.ppt
 
Chapter04
Chapter04Chapter04
Chapter04
 
Electronics: Logic Gates
Electronics: Logic GatesElectronics: Logic Gates
Electronics: Logic Gates
 
Basic logic gates
Basic logic gatesBasic logic gates
Basic logic gates
 
6_2019_04_09!08_59_48_PM logic gate_.ppt
6_2019_04_09!08_59_48_PM logic gate_.ppt6_2019_04_09!08_59_48_PM logic gate_.ppt
6_2019_04_09!08_59_48_PM logic gate_.ppt
 
basic logic gate presentation date23.ppt
basic logic gate presentation date23.pptbasic logic gate presentation date23.ppt
basic logic gate presentation date23.ppt
 
logic gates By ZAK
logic gates By ZAKlogic gates By ZAK
logic gates By ZAK
 
integrated circutits -324567654-12-345-.pptx
integrated circutits -324567654-12-345-.pptxintegrated circutits -324567654-12-345-.pptx
integrated circutits -324567654-12-345-.pptx
 
chapter 3 Boolean algebra (2).pptx
chapter 3 Boolean algebra (2).pptxchapter 3 Boolean algebra (2).pptx
chapter 3 Boolean algebra (2).pptx
 
class xi pptx-1.pptx
class xi pptx-1.pptxclass xi pptx-1.pptx
class xi pptx-1.pptx
 
Class 12th Logic Gates
Class 12th Logic GatesClass 12th Logic Gates
Class 12th Logic Gates
 
Logic gatesrevised.ppt
Logic gatesrevised.pptLogic gatesrevised.ppt
Logic gatesrevised.ppt
 

Recently uploaded

Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
ZurliaSoop
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
heathfieldcps1
 

Recently uploaded (20)

Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
Interdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptxInterdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptx
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
Graduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - EnglishGraduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - English
 
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptxCOMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptx
 
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 
Plant propagation: Sexual and Asexual propapagation.pptx
Plant propagation: Sexual and Asexual propapagation.pptxPlant propagation: Sexual and Asexual propapagation.pptx
Plant propagation: Sexual and Asexual propapagation.pptx
 
REMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptxREMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptx
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentation
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdf
 

LOGIC GATES

  • 2. Logic • Formal logic is a branch of mathematics that deals with true and false values instead of numbers. • In 1840’s, George Boole developed many Logic ideas. •A logic gate performs a logical operation on one or more logic inputs and produces a single logic output. 2 Page 2
  • 3. The logic normally performed is Boolean logic and is most commonly found in digital circuits. Logic gates are primarily implemented electronically using diodes or transistors, but can also be constructed using electromagnetic relays (relay logic), fluidic logic, pneumatic logic, optics, molecules, or even mechanical elements. In electronic logic, a logic level is represented by a voltage or current, depending on the type of electronic logic in use. Page 3
  • 4. Logic Signals There are a number of different systems for representing binary information in physical systems. Here are a few. A voltage signal with zero (0) corresponding to 0 volts and one (1) corresponding to five or three volts. A sinusoidal signal with zero corresponding to some frequency, and one corresponding to some other frequency. A current signal with zero corresponding to 4 milliamps and one corresponding to 20 milliamps. And one last way is to use switches, OPEN for "0" and CLOSED for "1". (And there are more ways!) Page 4
  • 5. Boolean algebra is the algebra of two values. These are usually taken to be 0 and 1, as we shall do here, although F and T, false and true, etc. are also in common use. Whereas elementary algebra is based on numeric operations multiplication xy, addition x + y, and negation −x, Boolean algebra is customarily based on logical counterparts to those operations, namely : (1) conjunction x∧y (AND) (2) disjunction x∨y (OR) (3) complement or negation ¬x (NOT). In electronics: AND is represented as a multiplication OR is represented as an addition NOT is represented with an overbar Page 5
  • 6. Basic logic gates • Not • And • Or • Nand • Nor • Xor 6 Page 6
  • 7. Truth Table A truth table is a good way to show the function of a logic gate. It shows the output states for every possible combination of input states. The symbols 0 (false) and 1 (true) are usually used in truth tables. Page 7
  • 8. NOT The output A is true when the input a is NOT true, the output is the inverse of the input: a = NOT A A NOT gate can only have one input. A NOT gate is also called an inverter. Truth Table: A A a 0 A 1 1 0 Page 8
  • 9. AND "If A AND B are both 1, then Q should be 1.“ (All or nothing.) Logic Gate: A A*B B Truth Table: A 0 A Series Circuit: A*B 0 0 1 1 0 0 0 1 B B 0 1 1 A*B Page 9
  • 10. Three Input AND Gate A B C ABC 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 0 0 0 1 0 1 0 1 1 0 0 1 1 1 1 Page 10
  • 11. OR "If A is 1 OR B is 1 (or both are 1), then Q is 1." Logic Gate: A A+B B Truth Table: A 0 B 1 0 1 1 1 Parallel Circuit: A+B 0 0 1 A B 0 1 1 A+B Page 11
  • 12. • Because + and * are binary operations, they can be cascaded together to OR or AND multiple inputs. A B A B C C A+B+C A+B+C A B A B C ABC ABC Page 12
  • 13. NAND and NOR Gates • NAND and NOR gates can greatly simplify circuit diagrams. NAND inverts the output of AND. • NOR inverts the output of OR. A 0 0 1 1 0 1 1 1 0 A NOR 0 A↑ B 1 1 NAND B B 0 0 A↓ B 1 0 1 0 1 0 0 1 1 0 Page 13
  • 14. XOR and XNOR Gates XOR (exclusive OR) :"If either A OR B is 1, but NOT both, Q is 1." A 0 0 A⊕ B 0 0 1 1 1 0 1 1 XOR B 1 0 XNOR (exclusive NOR) : invert output of XOR A XNOR B A B 0 0 1 0 1 0 1 0 0 1 1 1 Page 14
  • 15. • Find the output of the following circuit x+y (x+y)y y __ • Answer: (x+y)y 15 Page 15
  • 16. • Find the output of the following circuit x xy xy y ___ __ • Answer: xy Page 16
  • 17. Give the Boolean expression of the given circuit x+y (x+y)(xy) xy Answer: xy (x+y)(xy) 17 Page 17
  • 18. • Write the circuits for the following Boolean algebraic expressions __ a) x+y x x+y 18 Page 18
  • 19. • Write the circuits for the following Boolean algebraic expressions _______ b) (x+y)x x+y x+y (x+y)x 19 Page 19
  • 20. More about logic gates • To implement a logic gate in hardware, you use a transistor • Transistors are all enclosed in an “IC”, or integrated circuit • The current Intel Pentium IV processors have 55 million transistors! 20 Page 20
  • 21. Flip-flops • Consider the following circuit: • What does it do? 21 Page 21
  • 22. If you arrange the gates correctly, they will remember an input value. MEMORY This simple concept is the basis of RAM (random access memory) in computers, and also makes it possible to create a wide variety of other useful circuits. Memory relies on a concept called feedback. That is, the output of a gate is fed back into the input. • A flip-flop holds a single bit of memory • In reality, flip-flops are a bit more complicated – Have 5 (or so) logic gates (transistors) per flipflop • Consider a 1 Gb memory chip – 1 Gb = 8,589,934,592 bits of memory – That’s about 43 million transistors! • In reality, those transistors are split into 9 ICs of about 5 million transistors each 22 Page 22
  • 23. Exercises: 1.Give the Boolean expression of the given gate. Answer: (A + B)C 2.Give the Boolean expression of the given gate. Answer: A + BC + D 3.Draw a logic circuit for AB + AC. Page 23
  • 24. Exercises: 4.Draw a logic circuit for (A + B)(C + D) C. 5. Give the truth table for a 3-input (A,B & C) OR gate. 6. What type of logic gate's behavior does this truth table represent? 7.Give the Boolean expression of the given gate. Page 24
  • 25. Exercises: 8.Give the output expressions of the given gates. a. b. c. d. e. f. Page 25
  • 26. 3. AB + AC. Answers to Exercises: 5. 3-input OR gate ABC 4. (A + B)(C + D)C. 6. 3-input OR gate 7. Page 26
  • 27. Answers to Exercises: 8. a.) (ABC)(DE). b.) (ABC)+(DE). c.) (R+S+T) (X+Y+Z). d.) (R+S+T)+(X+Y+Z). e.) (JK)(M + N). f.) (AB) (M + N) (X + Y). Page 27