SlideShare une entreprise Scribd logo
1  sur  42
Télécharger pour lire hors ligne
Number System
&
Logic Gate
Course Title : Digital Logic Design
Course No : CSE-305
Presented By : Ashfakur Rahman
Reg No : 2018331524
Dept. Of CSE, Sylhet Engineering College, Sylhet
Number System
What is Number System?
• The method of writing or expressing a number and
using it to perform mathematical calculations is
called number system.
➢ There are various types of number system in
mathematics or Computer System:
Types of Number System
B.‘Non Positional’ Number System
What is Non Positional Number System?
• A number system in which the value of a number
does not depend on the position of the digits used
in the number is called a non-positional number
system.
➢ Hieroglyphics used in ancient times, Mayan and
Roman, Tally number system are examples of non-
positional number system.
B.‘Non Positional’ Number System
(Hieroglyphics)
(Tally)
(Roman)
A.‘Positional’ Number System
What is Positional Number System?
• A number system in which the value of a number
depends on the position of the digits used in the
number is called positional number system.
➢ The positional number system is divided into four
parts based on the base.(Which we have already
seen in slide No.3)
‘Base’ of a Number System
What is the ‘Base’ of a Number System?
• The total number or sum of the basic symbols
used in a number system is called the base of
that number system.
➢ A base is expressed as a subscript (a little below the
right of the number) to indicate which number is
written in which number system.(Number)base
A.PositionalNumberSystemataglance
1.Binary Number System
What is Binary Number System?
• The number system in which the two symbols 0
and 1 are used is called the binary number
system. The two basic symbols of the binary
number system 0 and 1 are called bits and a byte
is made up of eight bits.(1011)2
Base: Since 0 and 1 are the two symbols used in the
binary number system, so its base is 2.
1.Binary Number System
Uses: The binary number system is used in
computers or all electronic devices. All electronics
devices can sense only two conditions, the
presence and absence of electricity. The presence
of electricity is called ON, HIGH, TRUE or YES which
indicates logic level 1 and the absence of electricity
is called OFF, LOW, FALSE or NO which indicates
logic level 0. The two basic symbols of the binary
number system 0 and 1 are called bits and a byte is
made up of eight bits.
2.Octal Number System
What is Octal Number System?
• The word ‘octa’ means 8. The number system in which
8 (0,1,2,3,4,5,6,7) symbols are used is called octal
number system. In digital systems, octal number
system is used for accurate and easy representation of
binary numbers in various fields.(167)8
Base: Since 0,1,2,3,4,5,6,7 are the 8 symbols used in the
Octal number system, so its base is 8.
3.Decimal Number System
What is Decimal Number System?
• The word ‘deci’ means 10. The number system in
which 10 (0,1,2,3,4,5,6,7,8,9) symbols are used is
called decimal number system. We usually use
the decimal number system to calculate in our
daily lives.(189)10
Base: Since 0,1,2,3,4,5,6,7,8,9 are the 10 symbols used
in the Decimal number system, so its base is 10.
4.Hexadecimal Number System
What is Hexadecimal Number System?
• The word ‘Hexa’ means 6 and ‘Decimal’ means 10.
The number system in which (6+10)=16
(0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F) symbols are used is
called Hexadecimal number system.(1209A)16
Base: Since 0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F are the 16
symbols used in the Hexadecimal number system, so its
base is 16.
4.Hexadecimal Number System
Uses: In digital systems, Hexadecimal
number system is used for accurate and
easy representation of binary numbers in
various fields. Besides, The hexadecimal
number system is used as a code for
different memory addresses and colors.
Logic Gate?
A logic gate is a basic building
block of a digital circuit, which
is used to implement a Boolean
function. It is an electronic
circuit which makes logical
decisions based on the
combination of digital signals
present on its inputs. It is an
electronic circuit having one or
more than one inputs and only
one output.
Types of Logic Gate
Basic Gate
Basic gates which implement the basic
operation of Boolean Algebra. All
compound gates and any logic circuit can
be implemented using basic gates. There
are three types of basic gates in digital
electronics. They are-
1. OR Gate
2. AND Gate
3. NOT Gate
OR Gate
OR Gate is a gate of logical addition. That
is, the gate used to perform logical
additions in Boolean algebra is called OR
gate. The OR gate has two or more input
lines and only one output line. If all the
inputs are 0 then only the output will be
0 otherwise the output will be 1.
OR Gate(2-input)
OR Gate(3-input)
AND Gate
AND Gate is a gate of logical multiplication.
That is, the gate used to perform logical
multiplication in Boolean algebra is called
AND gate. The AND gate has two or more
input lines and only one output line. If all
the inputs are 1 then only the output will be
1 otherwise the output will be 0.
AND Gate(2-input)
AND Gate(3-input)
NOT Gate
NOT Gate is a gate of logical inversion/
complementation. That is, the gate used to
perform logical inversion /complementation
in Boolean algebra is called NOT gate. The
NOT gate has only one input line and one
output line. If the input is 1 then the output
will be 0 and if the input is 0 then the
output will be 1.
NOT Gate
Compound Gate
A gate that is created using two or more basic
gates is called a compound gate. For example-
• AND Gate +NOT Gate = NAND Gate
• OR Gate + NOT Gate = NOR Gate
Compound gates are two types. They are-
1. Universal Gate (NOR & NAND)
2. Exclusive Gate (X-OR & X-NOR)
Universal Gate
The gate which can implement all
the basic gates (AND, OR, NOT) as
well as any gate and any circuit is
called a universal gate. NAND and
NOR gates are called universal
gates. This is because only NAND
gate or only NOR gate can
implement all the basic gates
(AND, OR, NOT) as well as any
gate and any circuit. Fig: Universal gate(NAND & NOR)
NOR Gate
The Logic NOR Gate is a compound gate which is
combination of the logic OR gate and an NOT gate
connected together in series. By reversing the
output of the OR gate, the output of the NOR gate
is obtained.
Fig: OR Gate + NOT Gate = NOR Gate
NOR Gate(2-input)
NOR Gate(3-input)
NAND Gate
The Logic NAND Gate is a compound gate which is
combination of the logic AND gate and an NOT gate
connected together in series. By reversing the
output of the AND gate, the output of the NAND
gate is obtained.
Fig: AND Gate + NOT Gate = NAND Gate
NAND Gate(2-input)
NAND Gate(3-input)
Exclusive Gates
Two “hybrid” logic gates are called the
Exclusive-OR (X-OR) Gate and its complement
the Exclusive-NOR (X-NOR) Gate.
X-OR Gate
The Exclusive OR Gate is abbreviated as the X-
OR Gate. This is a compound gate made up of
AND, OR and NOT gates. The X-OR gate has two
or more input lines and only one output line.
The output is “1” when there are an odd
number of 1’s in the inputs, otherwise it is 0.
The X-OR operation is represented by ⊕
symbol. If A and B are the inputs of X-OR gate,
then output F will be-
F = A⊕B = A´B + AB´
X-OR Gate
F = A⊕B = A´B + AB´
Fig: Implementation of XOR gate using Basic gates
X-OR Gate(2-input)
X-OR Gate(3-input)
X-NOR Gate
The Exclusive NOR Gate is abbreviated as the
X-NOR Gate. It is combination of the X-OR gate
and the NOT gate connected together in series
that is also the reverse or complementary of
the Exclusive-OR gate. This is a compound
gate made up of AND, OR and NOT gates. The
X-NOR gate has two or more input lines and
only one output line. An even number of logic
“1’s” on its inputs gives a logic “1” at the
output, otherwise it is 0. The output-
F = (A⊕B)´ = A´B´ + AB
X-NOR Gate
Fig: Implementation of X-NOR gate using Basic gates
F = (A⊕B)´ = A´B´ + AB
X-NOR Gate(2-input)
X-NOR(3-input)

Contenu connexe

Tendances

Boolean Algebra
Boolean AlgebraBoolean Algebra
Boolean AlgebraHau Moy
 
Bruteforce algorithm
Bruteforce algorithmBruteforce algorithm
Bruteforce algorithmRezwan Siam
 
Microinstruction sequencing new
Microinstruction sequencing newMicroinstruction sequencing new
Microinstruction sequencing newMahesh Kumar Attri
 
Searching and Sorting Techniques in Data Structure
Searching and Sorting Techniques in Data StructureSearching and Sorting Techniques in Data Structure
Searching and Sorting Techniques in Data StructureBalwant Gorad
 
Computer architecture data representation
Computer architecture  data representationComputer architecture  data representation
Computer architecture data representationAnil Pokhrel
 
decoder and encoder
 decoder and encoder decoder and encoder
decoder and encoderUnsa Shakir
 
Registers and counters
Registers and counters Registers and counters
Registers and counters Deepak John
 
Input Output Organization
Input Output OrganizationInput Output Organization
Input Output OrganizationKamal Acharya
 
Basic syntax : Algorithm,Flow chart
Basic syntax : Algorithm,Flow chartBasic syntax : Algorithm,Flow chart
Basic syntax : Algorithm,Flow chartPrasanna R Kovath
 
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.Satya P. Joshi
 
Number system and codes
Number system and codesNumber system and codes
Number system and codesAbhiraj Bohra
 
Introduction to digital logic
Introduction to digital logicIntroduction to digital logic
Introduction to digital logicKamal Acharya
 
8086-microprocessor
8086-microprocessor8086-microprocessor
8086-microprocessorjhcid
 
Introduction number systems and conversion
 Introduction number systems and conversion Introduction number systems and conversion
Introduction number systems and conversionkanyuma jitjumnong
 
Multiplication algorithm
Multiplication algorithmMultiplication algorithm
Multiplication algorithmGaurav Subham
 

Tendances (20)

Boolean algebra and Logic gates
Boolean algebra and Logic gatesBoolean algebra and Logic gates
Boolean algebra and Logic gates
 
Binary codes
Binary codesBinary codes
Binary codes
 
Boolean Algebra
Boolean AlgebraBoolean Algebra
Boolean Algebra
 
Bruteforce algorithm
Bruteforce algorithmBruteforce algorithm
Bruteforce algorithm
 
BCD.
BCD.BCD.
BCD.
 
Microinstruction sequencing new
Microinstruction sequencing newMicroinstruction sequencing new
Microinstruction sequencing new
 
Searching and Sorting Techniques in Data Structure
Searching and Sorting Techniques in Data StructureSearching and Sorting Techniques in Data Structure
Searching and Sorting Techniques in Data Structure
 
Computer architecture data representation
Computer architecture  data representationComputer architecture  data representation
Computer architecture data representation
 
decoder and encoder
 decoder and encoder decoder and encoder
decoder and encoder
 
Quick sort
Quick sortQuick sort
Quick sort
 
Registers and counters
Registers and counters Registers and counters
Registers and counters
 
Searching
SearchingSearching
Searching
 
Input Output Organization
Input Output OrganizationInput Output Organization
Input Output Organization
 
Basic syntax : Algorithm,Flow chart
Basic syntax : Algorithm,Flow chartBasic syntax : Algorithm,Flow chart
Basic syntax : Algorithm,Flow chart
 
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.
 
Number system and codes
Number system and codesNumber system and codes
Number system and codes
 
Introduction to digital logic
Introduction to digital logicIntroduction to digital logic
Introduction to digital logic
 
8086-microprocessor
8086-microprocessor8086-microprocessor
8086-microprocessor
 
Introduction number systems and conversion
 Introduction number systems and conversion Introduction number systems and conversion
Introduction number systems and conversion
 
Multiplication algorithm
Multiplication algorithmMultiplication algorithm
Multiplication algorithm
 

Similaire à Number System & Logic Gate

digital electronics conversion of number stystem in digital electronics
digital electronics conversion of number stystem in digital electronicsdigital electronics conversion of number stystem in digital electronics
digital electronics conversion of number stystem in digital electronicsbalanebench
 
Basic Logic Gates with Truth Tables.pdf
Basic Logic Gates with Truth Tables.pdfBasic Logic Gates with Truth Tables.pdf
Basic Logic Gates with Truth Tables.pdfKINGZzofYouTube
 
Logic circuits and design PART 3.pptx
Logic circuits and  design PART 3.pptxLogic circuits and  design PART 3.pptx
Logic circuits and design PART 3.pptxOrlyLisondra1
 
Digital logic Gates of Computer Science
Digital logic Gates of Computer ScienceDigital logic Gates of Computer Science
Digital logic Gates of Computer ScienceAnil Kumar Prajapati
 
Lecture 04-Digital logic gates.pptx
Lecture 04-Digital logic gates.pptxLecture 04-Digital logic gates.pptx
Lecture 04-Digital logic gates.pptxWilliamJosephat1
 
M. FLORENCE DAYANA/unit - II logic gates and circuits.pdf
M. FLORENCE DAYANA/unit - II logic gates and circuits.pdfM. FLORENCE DAYANA/unit - II logic gates and circuits.pdf
M. FLORENCE DAYANA/unit - II logic gates and circuits.pdfDr.Florence Dayana
 
chapter 3 Boolean algebra (2).pptx
chapter 3 Boolean algebra (2).pptxchapter 3 Boolean algebra (2).pptx
chapter 3 Boolean algebra (2).pptxRithinA1
 
Applications of ICT Lecture 3.pptxjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj...
Applications of ICT Lecture 3.pptxjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj...Applications of ICT Lecture 3.pptxjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj...
Applications of ICT Lecture 3.pptxjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj...ammarqazi53
 
assignment_mathematics.pptx
assignment_mathematics.pptxassignment_mathematics.pptx
assignment_mathematics.pptxAravindaAKumar1
 
Computer and network technology (CNT) lecture 03
Computer and network technology (CNT)   lecture 03Computer and network technology (CNT)   lecture 03
Computer and network technology (CNT) lecture 03Susantha Herath
 
Logic gates and poden follow me to stream leader
Logic gates and poden follow me to stream leaderLogic gates and poden follow me to stream leader
Logic gates and poden follow me to stream leaderganesh209832
 
11_Fundamentals_of_Digital_Electronics_L.pptx
11_Fundamentals_of_Digital_Electronics_L.pptx11_Fundamentals_of_Digital_Electronics_L.pptx
11_Fundamentals_of_Digital_Electronics_L.pptxElisée Ndjabu
 
Digital Electronics-Review of Logic Gates.pptx
Digital Electronics-Review of Logic Gates.pptxDigital Electronics-Review of Logic Gates.pptx
Digital Electronics-Review of Logic Gates.pptxProfVilasShamraoPati
 
Logic gates and Digital system.pptx
Logic gates and Digital system.pptxLogic gates and Digital system.pptx
Logic gates and Digital system.pptxAmiShete2
 

Similaire à Number System & Logic Gate (20)

digital electronics conversion of number stystem in digital electronics
digital electronics conversion of number stystem in digital electronicsdigital electronics conversion of number stystem in digital electronics
digital electronics conversion of number stystem in digital electronics
 
Basic Logic Gates with Truth Tables.pdf
Basic Logic Gates with Truth Tables.pdfBasic Logic Gates with Truth Tables.pdf
Basic Logic Gates with Truth Tables.pdf
 
Basic Logic Gates
Basic Logic GatesBasic Logic Gates
Basic Logic Gates
 
DE notes
DE notesDE notes
DE notes
 
Logic circuits and design PART 3.pptx
Logic circuits and  design PART 3.pptxLogic circuits and  design PART 3.pptx
Logic circuits and design PART 3.pptx
 
Digital logic Gates of Computer Science
Digital logic Gates of Computer ScienceDigital logic Gates of Computer Science
Digital logic Gates of Computer Science
 
boolean-logic.pptx
boolean-logic.pptxboolean-logic.pptx
boolean-logic.pptx
 
Lecture 04-Digital logic gates.pptx
Lecture 04-Digital logic gates.pptxLecture 04-Digital logic gates.pptx
Lecture 04-Digital logic gates.pptx
 
M. FLORENCE DAYANA/unit - II logic gates and circuits.pdf
M. FLORENCE DAYANA/unit - II logic gates and circuits.pdfM. FLORENCE DAYANA/unit - II logic gates and circuits.pdf
M. FLORENCE DAYANA/unit - II logic gates and circuits.pdf
 
logic gates By ZAK
logic gates By ZAKlogic gates By ZAK
logic gates By ZAK
 
chapter 3 Boolean algebra (2).pptx
chapter 3 Boolean algebra (2).pptxchapter 3 Boolean algebra (2).pptx
chapter 3 Boolean algebra (2).pptx
 
Applications of ICT Lecture 3.pptxjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj...
Applications of ICT Lecture 3.pptxjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj...Applications of ICT Lecture 3.pptxjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj...
Applications of ICT Lecture 3.pptxjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj...
 
ECAD lab manual
ECAD lab manualECAD lab manual
ECAD lab manual
 
assignment_mathematics.pptx
assignment_mathematics.pptxassignment_mathematics.pptx
assignment_mathematics.pptx
 
Computer and network technology (CNT) lecture 03
Computer and network technology (CNT)   lecture 03Computer and network technology (CNT)   lecture 03
Computer and network technology (CNT) lecture 03
 
Coa presentation1
Coa presentation1Coa presentation1
Coa presentation1
 
Logic gates and poden follow me to stream leader
Logic gates and poden follow me to stream leaderLogic gates and poden follow me to stream leader
Logic gates and poden follow me to stream leader
 
11_Fundamentals_of_Digital_Electronics_L.pptx
11_Fundamentals_of_Digital_Electronics_L.pptx11_Fundamentals_of_Digital_Electronics_L.pptx
11_Fundamentals_of_Digital_Electronics_L.pptx
 
Digital Electronics-Review of Logic Gates.pptx
Digital Electronics-Review of Logic Gates.pptxDigital Electronics-Review of Logic Gates.pptx
Digital Electronics-Review of Logic Gates.pptx
 
Logic gates and Digital system.pptx
Logic gates and Digital system.pptxLogic gates and Digital system.pptx
Logic gates and Digital system.pptx
 

Dernier

Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhikauryashika82
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxVishalSingh1417
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfchloefrazer622
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpinRaunakKeshri1
 
fourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingfourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingTeacherCyreneCayanan
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...christianmathematics
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdfQucHHunhnh
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphThiyagu K
 
9548086042 for call girls in Indira Nagar with room service
9548086042  for call girls in Indira Nagar  with room service9548086042  for call girls in Indira Nagar  with room service
9548086042 for call girls in Indira Nagar with room servicediscovermytutordmt
 

Dernier (20)

Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdf
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpin
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
fourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingfourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writing
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
9548086042 for call girls in Indira Nagar with room service
9548086042  for call girls in Indira Nagar  with room service9548086042  for call girls in Indira Nagar  with room service
9548086042 for call girls in Indira Nagar with room service
 

Number System & Logic Gate

  • 1. Number System & Logic Gate Course Title : Digital Logic Design Course No : CSE-305 Presented By : Ashfakur Rahman Reg No : 2018331524 Dept. Of CSE, Sylhet Engineering College, Sylhet
  • 2. Number System What is Number System? • The method of writing or expressing a number and using it to perform mathematical calculations is called number system. ➢ There are various types of number system in mathematics or Computer System:
  • 4. B.‘Non Positional’ Number System What is Non Positional Number System? • A number system in which the value of a number does not depend on the position of the digits used in the number is called a non-positional number system. ➢ Hieroglyphics used in ancient times, Mayan and Roman, Tally number system are examples of non- positional number system.
  • 5. B.‘Non Positional’ Number System (Hieroglyphics) (Tally) (Roman)
  • 6. A.‘Positional’ Number System What is Positional Number System? • A number system in which the value of a number depends on the position of the digits used in the number is called positional number system. ➢ The positional number system is divided into four parts based on the base.(Which we have already seen in slide No.3)
  • 7. ‘Base’ of a Number System What is the ‘Base’ of a Number System? • The total number or sum of the basic symbols used in a number system is called the base of that number system. ➢ A base is expressed as a subscript (a little below the right of the number) to indicate which number is written in which number system.(Number)base
  • 9. 1.Binary Number System What is Binary Number System? • The number system in which the two symbols 0 and 1 are used is called the binary number system. The two basic symbols of the binary number system 0 and 1 are called bits and a byte is made up of eight bits.(1011)2 Base: Since 0 and 1 are the two symbols used in the binary number system, so its base is 2.
  • 10. 1.Binary Number System Uses: The binary number system is used in computers or all electronic devices. All electronics devices can sense only two conditions, the presence and absence of electricity. The presence of electricity is called ON, HIGH, TRUE or YES which indicates logic level 1 and the absence of electricity is called OFF, LOW, FALSE or NO which indicates logic level 0. The two basic symbols of the binary number system 0 and 1 are called bits and a byte is made up of eight bits.
  • 11. 2.Octal Number System What is Octal Number System? • The word ‘octa’ means 8. The number system in which 8 (0,1,2,3,4,5,6,7) symbols are used is called octal number system. In digital systems, octal number system is used for accurate and easy representation of binary numbers in various fields.(167)8 Base: Since 0,1,2,3,4,5,6,7 are the 8 symbols used in the Octal number system, so its base is 8.
  • 12. 3.Decimal Number System What is Decimal Number System? • The word ‘deci’ means 10. The number system in which 10 (0,1,2,3,4,5,6,7,8,9) symbols are used is called decimal number system. We usually use the decimal number system to calculate in our daily lives.(189)10 Base: Since 0,1,2,3,4,5,6,7,8,9 are the 10 symbols used in the Decimal number system, so its base is 10.
  • 13. 4.Hexadecimal Number System What is Hexadecimal Number System? • The word ‘Hexa’ means 6 and ‘Decimal’ means 10. The number system in which (6+10)=16 (0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F) symbols are used is called Hexadecimal number system.(1209A)16 Base: Since 0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F are the 16 symbols used in the Hexadecimal number system, so its base is 16.
  • 14. 4.Hexadecimal Number System Uses: In digital systems, Hexadecimal number system is used for accurate and easy representation of binary numbers in various fields. Besides, The hexadecimal number system is used as a code for different memory addresses and colors.
  • 15. Logic Gate? A logic gate is a basic building block of a digital circuit, which is used to implement a Boolean function. It is an electronic circuit which makes logical decisions based on the combination of digital signals present on its inputs. It is an electronic circuit having one or more than one inputs and only one output.
  • 17. Basic Gate Basic gates which implement the basic operation of Boolean Algebra. All compound gates and any logic circuit can be implemented using basic gates. There are three types of basic gates in digital electronics. They are- 1. OR Gate 2. AND Gate 3. NOT Gate
  • 18. OR Gate OR Gate is a gate of logical addition. That is, the gate used to perform logical additions in Boolean algebra is called OR gate. The OR gate has two or more input lines and only one output line. If all the inputs are 0 then only the output will be 0 otherwise the output will be 1.
  • 21. AND Gate AND Gate is a gate of logical multiplication. That is, the gate used to perform logical multiplication in Boolean algebra is called AND gate. The AND gate has two or more input lines and only one output line. If all the inputs are 1 then only the output will be 1 otherwise the output will be 0.
  • 24. NOT Gate NOT Gate is a gate of logical inversion/ complementation. That is, the gate used to perform logical inversion /complementation in Boolean algebra is called NOT gate. The NOT gate has only one input line and one output line. If the input is 1 then the output will be 0 and if the input is 0 then the output will be 1.
  • 26. Compound Gate A gate that is created using two or more basic gates is called a compound gate. For example- • AND Gate +NOT Gate = NAND Gate • OR Gate + NOT Gate = NOR Gate Compound gates are two types. They are- 1. Universal Gate (NOR & NAND) 2. Exclusive Gate (X-OR & X-NOR)
  • 27. Universal Gate The gate which can implement all the basic gates (AND, OR, NOT) as well as any gate and any circuit is called a universal gate. NAND and NOR gates are called universal gates. This is because only NAND gate or only NOR gate can implement all the basic gates (AND, OR, NOT) as well as any gate and any circuit. Fig: Universal gate(NAND & NOR)
  • 28. NOR Gate The Logic NOR Gate is a compound gate which is combination of the logic OR gate and an NOT gate connected together in series. By reversing the output of the OR gate, the output of the NOR gate is obtained. Fig: OR Gate + NOT Gate = NOR Gate
  • 31. NAND Gate The Logic NAND Gate is a compound gate which is combination of the logic AND gate and an NOT gate connected together in series. By reversing the output of the AND gate, the output of the NAND gate is obtained. Fig: AND Gate + NOT Gate = NAND Gate
  • 34. Exclusive Gates Two “hybrid” logic gates are called the Exclusive-OR (X-OR) Gate and its complement the Exclusive-NOR (X-NOR) Gate.
  • 35. X-OR Gate The Exclusive OR Gate is abbreviated as the X- OR Gate. This is a compound gate made up of AND, OR and NOT gates. The X-OR gate has two or more input lines and only one output line. The output is “1” when there are an odd number of 1’s in the inputs, otherwise it is 0. The X-OR operation is represented by ⊕ symbol. If A and B are the inputs of X-OR gate, then output F will be- F = A⊕B = A´B + AB´
  • 36. X-OR Gate F = A⊕B = A´B + AB´ Fig: Implementation of XOR gate using Basic gates
  • 39. X-NOR Gate The Exclusive NOR Gate is abbreviated as the X-NOR Gate. It is combination of the X-OR gate and the NOT gate connected together in series that is also the reverse or complementary of the Exclusive-OR gate. This is a compound gate made up of AND, OR and NOT gates. The X-NOR gate has two or more input lines and only one output line. An even number of logic “1’s” on its inputs gives a logic “1” at the output, otherwise it is 0. The output- F = (A⊕B)´ = A´B´ + AB
  • 40. X-NOR Gate Fig: Implementation of X-NOR gate using Basic gates F = (A⊕B)´ = A´B´ + AB