SlideShare a Scribd company logo
1 of 31
Number System
Presented by
Name : Md. Abu Noman Jumaed
ID : 142-15-3472
Dept. : CSE
Faculty : FSIT
CONTENTS
 Introduction
 Decimal Number System
 Binary Number System
 Why Binary?
 Octal Number System
 Hexadecimal Number System
 Relationship between Hexadecimal, Octal,
Decimal, and Binary
 Number Conversions
INTRODUCTION
In early days when there were no means of
counting, people use to count with the help of
fingers, stones, sticks, etc.
These methods were not adequate and had many
limitations.
Many number system were introduced with the
passage of time like:
 Decimal Number System
 Binary Number System
 Octal Number System
 Hexadecimal Number System
Decimal Number System
• It consist of ten digit i.e. 0, 1, 2, 3, 4, 5, 6, 7, 8,
9 with the base 10.
• Each number can be used individually or they
can be grouped to form a numeric value as
85,48,35,456 etc.
BINARY NUMBER SYSTEM
• The Binary Number System consist of only two
digits– 0 and 1.
• Since this system use two digits, it has the
base 2.
• All digital computer use this number system
and convert the data input from the decimal
format into its binary equivalent.
Why Binary?
Since the computer is made up of electronic
components; it can have only two states, either
• On(1)
• Off(0)
The data which is given to the computer is
converted into binary form because a computer
understand only binary language.
It further converts the binary results into their
decimal equivalents for output.
Octal Number System
 In the Octal Number System it consist of 8
digits i.e. 0, 1, 2, 3, 4, 5, 6, 7 with a base 8.
 The sequence of octal number goes as 0, 1, 2,
3, 4, 5, 6, 7, 10, 11, 12, 13, 14, 15, 16, 17, 20,
21, 22, …..as go on.
 See each successive number after 7 is a
combination of two or more unique symbols of
octal system.
Hexadecimal Number System
 The Hexadecimal system use base 16.
 It has 16 possible digit symbol.
 It use the digit 0 through 9 plus the letters A, B,
C, D, E, and F as the 16 digit symbols.
Relationship between Hexadecimal, Octal,
Decimal, and Binary
 Notice that each
hexadecimal digit
represent a
group of four
binary digit. It Is
important to
remember that
Hex(Abbreviation
for Hexadecimal)
digit A through F
are equivalent to
the decimal value
10 through 15.
Hexadeci
mal
Octal Decimal Binary
0 0 0 0000
1 1 1 0001
2 2 2 0010
3 3 3 0011
4 4 4 0100
5 5 5 0101
6 6 6 0110
7 7 7 0111
8 10 8 1000
9 11 9 1001
A 12 10 1010
B 13 11 1011
C 14 12 1100
D 15 13 1101
E 16 14 1110
F 17 15 1111
NUMBER CONVERSIONS
Decimal-to-Binary Conversion
The method of converting Decimal to binary is
repeated-division method. For conversion follow
the rules:
1. Divide the given decimal number with the
base 2.
2. Write down the remainder and divide the
quotient by 2.
3. Repeat step 2 till the quotient is zero.
Convert 20010 to Binary Number
Reading the
remainders from the
bottom to top, the result
is
20010 = 110010002
2 200 Remainders
2 100 0 LSB
2 50 0
2 25 0
Write
2 12 1 in
2 6 0 this
2 3 0
order
2 1 1
0 1 MSB
Binary-to-Decimal Conversion
To convert a binary number follow the steps:
1. Multiply each binary number with 2 having the
power 0 for last position, starting from the right
digit.
2. Increase the power one by one, with base as
2.
3. Sum up all the products to get decimal
number.
Convert 1100010012 to Decimal Number
1100010012= 1 X 28 + 1 𝑋 27 + 0 𝑋 26 +
0 𝑋 25 + 0 𝑋 24 + 1 𝑋 23 +
0 𝑋 22
+ 0 𝑋 21
1 𝑋 20
= 256 + 128 + 0 + 0 + 0 + 8 + 0 + 0 + 1
= 393
Thus, 1100010012 = 39310
Decimal-to-Octal
The method of converting Decimal to Octal is
repeated-division method. For conversion follow
the rules:
1. Divide the given decimal number with the
base 8,
2. Write down the remainder and divide the
quotient by 8,
3. Repeat step 2 till the quotient is zero.
Convert 50010 to Octal Number
Reading the
remainders from the
bottom to top, the
result is
26610 = 4128
8 266 Remainders
8 33 2 LSB
8 4 1
0 4
MSB
Octal-to-Decimal Conversion
To convert a octal number follow the steps:
1. Multiply each Octal number with 8 having the
power 0 for last position, starting from the right
digit.
2. Increase the power one by one, with base as
8.
3. Sum up all the products to get decimal
number.
Convert (372)8 to Decimal Number
3728 = 3 X 82 + 7 𝑋 81 + 2 𝑋 80
= 3 X 64 + 7 X 8 + 2 X 1
= 192 + 56 + 2
= 25010
Thus, 3728 = 25010
So, an octal number can be easily converted to
its decimal equivalent by multiplying each octal
digit by its position weight.
Octal-to-Binary Conversion
The conversion from octal to binary is performed
by converting each octal digit to its 3-bit binary
equivalent.
The eight possible digits are converted as
indicated below:
Using these conversions, any octal number is
converted to binary by individually converting
each digit.
Octal Digit 0 1 2 3 4 5 6 7
Binary
Equivalent
000 001 010 011 100 101 110 111
Convert 54318 to Binary Number
We convert 54318 to binary using 3 bits for each
octal digit as follows:
5 4 3 1
101 100 011 001
Thus, 54318 = 1011000110012
Binary-to-Octal Conversion
Converting from binary integers to octal integers is
simply the reverse of the foregoing process. Firstly
you have to do is:
1. Group the binary integer into 3-bits starting at the
Least Significant Bit(LSB).
2. If unable to form group then, add one or two 0s.
3. Each group Is converted to its octal equivalent.
It illustrated below for binary number 11010110
0 1 1 0 1 0 1 1 0
3 2 6
Thus, 110101102 = 3268
Decimal-to-Hexadecimal Conversion
The method of converting Decimal to
Hexadecimal is repeated-division method. For
conversion follow the rules:
1. Divide the given decimal number with the
base 16.
2. Write down the remainder and divide the
quotient by 16.
3. Repeat step 2 till the quotient is zero.
Convert 42310 to Hexadecimal
Reading the
remainders from
the bottom to top,
the result is
42310 = 1𝐴716
Note: Any
remainder greater
than 9 are
represented by
letters A through F.
16 423 Remainders
16 26 7 LSB
16 1 A
0 1 MSB
Hexadecimal-to-Decimal Conversion
To convert a Hexadecimal number follow the
steps:
1. Multiply each hexadecimal number with 16
having the power 0 for last position, starting
from the right digit.
2. Increase the power one by one, with base as
16.
3. Sum up all the products to get decimal
number.
Convert 2𝐴𝐹16 to Decimal Number
2𝐴𝐹16 = 2 X 162 + 10 𝑋 161 + 15 𝑋 160
= 512 + 160 + 15
= 68710
Thus, 2𝐴𝐹16 = 68710
Binary-to-Hexadecimal Conversion
Converting from binary integers to hexadecimal
integers is simple. Firstly you have to do is:
1. Group the binary integer into 4-bits starting at the
Least Significant Bit(LSB).
2. If unable to form group then, add one or two 0s.
3. Each group Is converted to its Hexadecimal
equivalent.
It illustrated below for binary number 1010111010
0 0 1 0 1 0 1 1 1 0 1 0
2 B A
Thus, 10101110102 = 2𝐵𝐴16
Hexadecimal-to-Binary Conversion
The conversion from Hexadecimal to binary is
performed by converting each Hexadecimal digit
to its 4-bit binary equivalent.
This is illustrated below:
9𝐹216 = 9 F 2
1001 1111 0010
Thus, 9𝐹216 = 1001111100102
References
Computer Fundamentals
By Dr. M Lutfar Rahman &
Dr. M Alamgir Hossain
Computer Fundamentals
By Pradeep K. Sinha & Priti Sinha
http://www.byte-notes.com/number-system-
computer
Thank You
Any Query???

More Related Content

What's hot

Lec 02 data representation part 1
Lec 02 data representation part 1Lec 02 data representation part 1
Lec 02 data representation part 1Abdul Khan
 
Number system and codes
Number system and codesNumber system and codes
Number system and codesAbhiraj Bohra
 
Representation Of Data
Representation Of DataRepresentation Of Data
Representation Of Datagavhays
 
Data types
Data typesData types
Data typesgavhays
 
Number systems
Number systemsNumber systems
Number systemsthechamp3
 
Representation of Integers
Representation of IntegersRepresentation of Integers
Representation of IntegersSusantha Herath
 
Chapter 2.1 introduction to number system
Chapter 2.1 introduction to number systemChapter 2.1 introduction to number system
Chapter 2.1 introduction to number systemISMT College
 
data representation
 data representation data representation
data representationHaroon_007
 
Representation of Signed Numbers - R.D.Sivakumar
Representation of Signed Numbers - R.D.SivakumarRepresentation of Signed Numbers - R.D.Sivakumar
Representation of Signed Numbers - R.D.SivakumarSivakumar R D .
 
Binary coded decimal r004
Binary coded decimal   r004Binary coded decimal   r004
Binary coded decimal r004arunachalamr16
 
Number system by ammar nawab
Number system by ammar nawabNumber system by ammar nawab
Number system by ammar nawabAmmar_n
 

What's hot (20)

Number Systems
Number SystemsNumber Systems
Number Systems
 
Data Representation
Data RepresentationData Representation
Data Representation
 
Lec 02 data representation part 1
Lec 02 data representation part 1Lec 02 data representation part 1
Lec 02 data representation part 1
 
Number system and codes
Number system and codesNumber system and codes
Number system and codes
 
Representation Of Data
Representation Of DataRepresentation Of Data
Representation Of Data
 
Number System
Number SystemNumber System
Number System
 
Data types
Data typesData types
Data types
 
Data representation
Data representationData representation
Data representation
 
Number Systems Basic Concepts
Number Systems Basic ConceptsNumber Systems Basic Concepts
Number Systems Basic Concepts
 
Number systems
Number systemsNumber systems
Number systems
 
Representation of Integers
Representation of IntegersRepresentation of Integers
Representation of Integers
 
Chapter 2.1 introduction to number system
Chapter 2.1 introduction to number systemChapter 2.1 introduction to number system
Chapter 2.1 introduction to number system
 
data representation
 data representation data representation
data representation
 
Number system
Number systemNumber system
Number system
 
Representation of Signed Numbers - R.D.Sivakumar
Representation of Signed Numbers - R.D.SivakumarRepresentation of Signed Numbers - R.D.Sivakumar
Representation of Signed Numbers - R.D.Sivakumar
 
Chapter 1: Binary System
 Chapter 1: Binary System Chapter 1: Binary System
Chapter 1: Binary System
 
Binary coded decimal r004
Binary coded decimal   r004Binary coded decimal   r004
Binary coded decimal r004
 
Number system by ammar nawab
Number system by ammar nawabNumber system by ammar nawab
Number system by ammar nawab
 
Code conversion r006
Code conversion r006Code conversion r006
Code conversion r006
 
Data Representation
Data RepresentationData Representation
Data Representation
 

Viewers also liked

Realnumbersystemnotes
RealnumbersystemnotesRealnumbersystemnotes
Realnumbersystemnotesim8th2
 
Class9 number system
Class9  number systemClass9  number system
Class9 number systemShija John
 
Mathematical concepts and their applications: Number system
Mathematical concepts and their applications: Number systemMathematical concepts and their applications: Number system
Mathematical concepts and their applications: Number systemJesstern Rays
 
Number System
Number SystemNumber System
Number Systemitutor
 

Viewers also liked (6)

Realnumbersystemnotes
RealnumbersystemnotesRealnumbersystemnotes
Realnumbersystemnotes
 
Class9 number system
Class9  number systemClass9  number system
Class9 number system
 
Mathematical concepts and their applications: Number system
Mathematical concepts and their applications: Number systemMathematical concepts and their applications: Number system
Mathematical concepts and their applications: Number system
 
Number System
Number SystemNumber System
Number System
 
Number system
Number systemNumber system
Number system
 
Number System
Number SystemNumber System
Number System
 

Similar to Cse 112 number system-[id_142-15-3472]

Numbersystem 130621192712-phpapp02
Numbersystem 130621192712-phpapp02Numbersystem 130621192712-phpapp02
Numbersystem 130621192712-phpapp02muhammadsarab
 
numbersystem-211022083557.pdf
numbersystem-211022083557.pdfnumbersystem-211022083557.pdf
numbersystem-211022083557.pdfAsthaChaurasia4
 
Lecture 02 - Logic Design(Number Systems).pptx
Lecture 02 - Logic Design(Number Systems).pptxLecture 02 - Logic Design(Number Systems).pptx
Lecture 02 - Logic Design(Number Systems).pptxshwan it
 
DATA REPRESENTATION.pptx
DATA REPRESENTATION.pptxDATA REPRESENTATION.pptx
DATA REPRESENTATION.pptxMamataAnilgod
 
02 number systems
02 number systems02 number systems
02 number systemsjohn01383
 
dtei-180910104911-converted.pptx
dtei-180910104911-converted.pptxdtei-180910104911-converted.pptx
dtei-180910104911-converted.pptxdeepaMS4
 
FYBSC IT Digital Electronics Unit I Chapter I Number System and Binary Arithm...
FYBSC IT Digital Electronics Unit I Chapter I Number System and Binary Arithm...FYBSC IT Digital Electronics Unit I Chapter I Number System and Binary Arithm...
FYBSC IT Digital Electronics Unit I Chapter I Number System and Binary Arithm...Arti Parab Academics
 
Conversion between various numbers_systems
Conversion between various numbers_systemsConversion between various numbers_systems
Conversion between various numbers_systemsdradilkhan87
 
numbers_systems (1).ppt
numbers_systems (1).pptnumbers_systems (1).ppt
numbers_systems (1).pptYashNaware2
 

Similar to Cse 112 number system-[id_142-15-3472] (20)

Number system
Number systemNumber system
Number system
 
Numbersystem 130621192712-phpapp02
Numbersystem 130621192712-phpapp02Numbersystem 130621192712-phpapp02
Numbersystem 130621192712-phpapp02
 
Computer Number system
Computer Number systemComputer Number system
Computer Number system
 
numbersystem-211022083557.pdf
numbersystem-211022083557.pdfnumbersystem-211022083557.pdf
numbersystem-211022083557.pdf
 
Lecture 02 - Logic Design(Number Systems).pptx
Lecture 02 - Logic Design(Number Systems).pptxLecture 02 - Logic Design(Number Systems).pptx
Lecture 02 - Logic Design(Number Systems).pptx
 
Number System.pptx
Number System.pptxNumber System.pptx
Number System.pptx
 
DATA REPRESENTATION.pptx
DATA REPRESENTATION.pptxDATA REPRESENTATION.pptx
DATA REPRESENTATION.pptx
 
Lecture 2 ns
Lecture 2 nsLecture 2 ns
Lecture 2 ns
 
Number system
Number systemNumber system
Number system
 
02 number systems
02 number systems02 number systems
02 number systems
 
dtei-180910104911-converted.pptx
dtei-180910104911-converted.pptxdtei-180910104911-converted.pptx
dtei-180910104911-converted.pptx
 
FYBSC IT Digital Electronics Unit I Chapter I Number System and Binary Arithm...
FYBSC IT Digital Electronics Unit I Chapter I Number System and Binary Arithm...FYBSC IT Digital Electronics Unit I Chapter I Number System and Binary Arithm...
FYBSC IT Digital Electronics Unit I Chapter I Number System and Binary Arithm...
 
005618132.pdf
005618132.pdf005618132.pdf
005618132.pdf
 
numbers_systems.ppt
numbers_systems.pptnumbers_systems.ppt
numbers_systems.ppt
 
numbers_systems.ppt
numbers_systems.pptnumbers_systems.ppt
numbers_systems.ppt
 
numbers_systems.ppt
numbers_systems.pptnumbers_systems.ppt
numbers_systems.ppt
 
numbers_systems.pptx
numbers_systems.pptxnumbers_systems.pptx
numbers_systems.pptx
 
Conversion between various numbers_systems
Conversion between various numbers_systemsConversion between various numbers_systems
Conversion between various numbers_systems
 
numbers_systems (1).ppt
numbers_systems (1).pptnumbers_systems (1).ppt
numbers_systems (1).ppt
 
Number Systems - AK.pptx
Number Systems - AK.pptxNumber Systems - AK.pptx
Number Systems - AK.pptx
 

Recently uploaded

Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxMaking_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxnull - The Open Security Community
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 3652toLead Limited
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationSafe Software
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxOnBoard
 
Benefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksBenefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksSoftradix Technologies
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsMemoori
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhisoniya singh
 
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024BookNet Canada
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Patryk Bandurski
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersThousandEyes
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Enterprise Knowledge
 

Recently uploaded (20)

Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxMaking_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food Manufacturing
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptx
 
Benefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksBenefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other Frameworks
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial Buildings
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
 
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024
 

Cse 112 number system-[id_142-15-3472]

  • 2. Presented by Name : Md. Abu Noman Jumaed ID : 142-15-3472 Dept. : CSE Faculty : FSIT
  • 3. CONTENTS  Introduction  Decimal Number System  Binary Number System  Why Binary?  Octal Number System  Hexadecimal Number System  Relationship between Hexadecimal, Octal, Decimal, and Binary  Number Conversions
  • 4. INTRODUCTION In early days when there were no means of counting, people use to count with the help of fingers, stones, sticks, etc. These methods were not adequate and had many limitations. Many number system were introduced with the passage of time like:  Decimal Number System  Binary Number System  Octal Number System  Hexadecimal Number System
  • 5. Decimal Number System • It consist of ten digit i.e. 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 with the base 10. • Each number can be used individually or they can be grouped to form a numeric value as 85,48,35,456 etc.
  • 6. BINARY NUMBER SYSTEM • The Binary Number System consist of only two digits– 0 and 1. • Since this system use two digits, it has the base 2. • All digital computer use this number system and convert the data input from the decimal format into its binary equivalent.
  • 7. Why Binary? Since the computer is made up of electronic components; it can have only two states, either • On(1) • Off(0) The data which is given to the computer is converted into binary form because a computer understand only binary language. It further converts the binary results into their decimal equivalents for output.
  • 8. Octal Number System  In the Octal Number System it consist of 8 digits i.e. 0, 1, 2, 3, 4, 5, 6, 7 with a base 8.  The sequence of octal number goes as 0, 1, 2, 3, 4, 5, 6, 7, 10, 11, 12, 13, 14, 15, 16, 17, 20, 21, 22, …..as go on.  See each successive number after 7 is a combination of two or more unique symbols of octal system.
  • 9. Hexadecimal Number System  The Hexadecimal system use base 16.  It has 16 possible digit symbol.  It use the digit 0 through 9 plus the letters A, B, C, D, E, and F as the 16 digit symbols.
  • 10. Relationship between Hexadecimal, Octal, Decimal, and Binary  Notice that each hexadecimal digit represent a group of four binary digit. It Is important to remember that Hex(Abbreviation for Hexadecimal) digit A through F are equivalent to the decimal value 10 through 15. Hexadeci mal Octal Decimal Binary 0 0 0 0000 1 1 1 0001 2 2 2 0010 3 3 3 0011 4 4 4 0100 5 5 5 0101 6 6 6 0110 7 7 7 0111 8 10 8 1000 9 11 9 1001 A 12 10 1010 B 13 11 1011 C 14 12 1100 D 15 13 1101 E 16 14 1110 F 17 15 1111
  • 12. Decimal-to-Binary Conversion The method of converting Decimal to binary is repeated-division method. For conversion follow the rules: 1. Divide the given decimal number with the base 2. 2. Write down the remainder and divide the quotient by 2. 3. Repeat step 2 till the quotient is zero.
  • 13. Convert 20010 to Binary Number Reading the remainders from the bottom to top, the result is 20010 = 110010002 2 200 Remainders 2 100 0 LSB 2 50 0 2 25 0 Write 2 12 1 in 2 6 0 this 2 3 0 order 2 1 1 0 1 MSB
  • 14. Binary-to-Decimal Conversion To convert a binary number follow the steps: 1. Multiply each binary number with 2 having the power 0 for last position, starting from the right digit. 2. Increase the power one by one, with base as 2. 3. Sum up all the products to get decimal number.
  • 15. Convert 1100010012 to Decimal Number 1100010012= 1 X 28 + 1 𝑋 27 + 0 𝑋 26 + 0 𝑋 25 + 0 𝑋 24 + 1 𝑋 23 + 0 𝑋 22 + 0 𝑋 21 1 𝑋 20 = 256 + 128 + 0 + 0 + 0 + 8 + 0 + 0 + 1 = 393 Thus, 1100010012 = 39310
  • 16. Decimal-to-Octal The method of converting Decimal to Octal is repeated-division method. For conversion follow the rules: 1. Divide the given decimal number with the base 8, 2. Write down the remainder and divide the quotient by 8, 3. Repeat step 2 till the quotient is zero.
  • 17. Convert 50010 to Octal Number Reading the remainders from the bottom to top, the result is 26610 = 4128 8 266 Remainders 8 33 2 LSB 8 4 1 0 4 MSB
  • 18. Octal-to-Decimal Conversion To convert a octal number follow the steps: 1. Multiply each Octal number with 8 having the power 0 for last position, starting from the right digit. 2. Increase the power one by one, with base as 8. 3. Sum up all the products to get decimal number.
  • 19. Convert (372)8 to Decimal Number 3728 = 3 X 82 + 7 𝑋 81 + 2 𝑋 80 = 3 X 64 + 7 X 8 + 2 X 1 = 192 + 56 + 2 = 25010 Thus, 3728 = 25010 So, an octal number can be easily converted to its decimal equivalent by multiplying each octal digit by its position weight.
  • 20. Octal-to-Binary Conversion The conversion from octal to binary is performed by converting each octal digit to its 3-bit binary equivalent. The eight possible digits are converted as indicated below: Using these conversions, any octal number is converted to binary by individually converting each digit. Octal Digit 0 1 2 3 4 5 6 7 Binary Equivalent 000 001 010 011 100 101 110 111
  • 21. Convert 54318 to Binary Number We convert 54318 to binary using 3 bits for each octal digit as follows: 5 4 3 1 101 100 011 001 Thus, 54318 = 1011000110012
  • 22. Binary-to-Octal Conversion Converting from binary integers to octal integers is simply the reverse of the foregoing process. Firstly you have to do is: 1. Group the binary integer into 3-bits starting at the Least Significant Bit(LSB). 2. If unable to form group then, add one or two 0s. 3. Each group Is converted to its octal equivalent. It illustrated below for binary number 11010110 0 1 1 0 1 0 1 1 0 3 2 6 Thus, 110101102 = 3268
  • 23. Decimal-to-Hexadecimal Conversion The method of converting Decimal to Hexadecimal is repeated-division method. For conversion follow the rules: 1. Divide the given decimal number with the base 16. 2. Write down the remainder and divide the quotient by 16. 3. Repeat step 2 till the quotient is zero.
  • 24. Convert 42310 to Hexadecimal Reading the remainders from the bottom to top, the result is 42310 = 1𝐴716 Note: Any remainder greater than 9 are represented by letters A through F. 16 423 Remainders 16 26 7 LSB 16 1 A 0 1 MSB
  • 25. Hexadecimal-to-Decimal Conversion To convert a Hexadecimal number follow the steps: 1. Multiply each hexadecimal number with 16 having the power 0 for last position, starting from the right digit. 2. Increase the power one by one, with base as 16. 3. Sum up all the products to get decimal number.
  • 26. Convert 2𝐴𝐹16 to Decimal Number 2𝐴𝐹16 = 2 X 162 + 10 𝑋 161 + 15 𝑋 160 = 512 + 160 + 15 = 68710 Thus, 2𝐴𝐹16 = 68710
  • 27. Binary-to-Hexadecimal Conversion Converting from binary integers to hexadecimal integers is simple. Firstly you have to do is: 1. Group the binary integer into 4-bits starting at the Least Significant Bit(LSB). 2. If unable to form group then, add one or two 0s. 3. Each group Is converted to its Hexadecimal equivalent. It illustrated below for binary number 1010111010 0 0 1 0 1 0 1 1 1 0 1 0 2 B A Thus, 10101110102 = 2𝐵𝐴16
  • 28. Hexadecimal-to-Binary Conversion The conversion from Hexadecimal to binary is performed by converting each Hexadecimal digit to its 4-bit binary equivalent. This is illustrated below: 9𝐹216 = 9 F 2 1001 1111 0010 Thus, 9𝐹216 = 1001111100102
  • 29. References Computer Fundamentals By Dr. M Lutfar Rahman & Dr. M Alamgir Hossain Computer Fundamentals By Pradeep K. Sinha & Priti Sinha http://www.byte-notes.com/number-system- computer