SlideShare a Scribd company logo
1 of 21
Download to read offline
Number Base Conversions
T.Srikrishna
As, we have four types of number systems so each one
can be converted into the remaining three systems.
These are the following conversions possible in
Number System
• Binary to other Number Systems.
• Decimal to other Number Systems.
• Octal to other Number Systems.
• Hexadecimal to other Number Systems.
T.Srikrishna, M.Sc, M.Tech. GVP
T.Srikrishna, M.Sc, M.Tech. GVP
Decimal to Other Base System
For converting decimal to binary, there are two steps
required to perform, which are as follows:
Convert the integral part of decimal to Other Base System
• In the first step, we perform the division operation on the
integer and the successive quotient with the base of the
new system.
Convert the fractional part of decimal to Other Base System
• Next, we perform the multiplication on the integer and the
successive quotient with the base of the new system .
T.Srikrishna, M.Sc, M.Tech. GVP
Ex 1: Decimal to Binary
• (10.25)10
• Note: Keep multiplying the fractional part with 2 until
decimal part 0.00 is obtained. (0.25)10 = (0.01)2
• Answer: (10.25)10 = (1010.01)2
T.Srikrishna, M.Sc, M.Tech. GVP
• Ex 2: (152.25)10
(152)10=(10011000)2
(0.25)10=(.01)2
T.Srikrishna, M.Sc, M.Tech. GVP
Decimal to Octal
Ex 1: (10.25)10
(10)10 = (12)8
Fractional part:
0.25 x 8 = 2.00
Note: Keep multiplying the fractional part with 8 until decimal part .00 is
obtained. (.25)10 = (.2)8
Answer: (10.25)10 = (12.2)8
Ex 2: (152.25)10
(152)10=(230)8
(0.25)10=(2)8
• So, the octal number of the decimal number 152.25 is 230.2
T.Srikrishna, M.Sc, M.Tech. GVP
Decimal to Hexa:
• Ex1: (10.25)10
(10)10 = ( ? )16
Answer ???
• Ex2: (152.25)10
(152)10=(98)16
(0.25)10=(4)16
So, the hexadecimal number of the decimal number
152.25 is 98.4
T.Srikrishna, M.Sc, M.Tech. GVP
Other Base System to Decimal System
The process starts from multiplying the
digits of given number with its corresponding
positional weights. And lastly, we add all those
products.
T.Srikrishna, M.Sc, M.Tech. GVP
Binary to Decimal
• Ex 1: (1010.01)2 convert into decimal
1×23 + 0x22 + 1×21+ 0x20 + 0x2 -1 + 1×2 -2 = 8+0+2+0+0+0.25 = 10.25
(1010.01)2 = (10.25)10
• Ex 2: (10110.001)2
We multiplied each bit of (10110.001)2 with its respective positional weight, and last
we add the products of all the bits with its weight.
(10110.001)2=(1×24)+(0×23)+(1×22)+(1×21)+(0×20)+ (0×2-1)+(0×2-2)+(1×2-3)
(10110.001)2=(1×16)+(0×8)+(1×4)+(1×2)+(0×1)+ (0×1⁄2)+(0×1⁄4)+(1×1⁄8)
(10110.001)2=16+0+4+2+0+0+0+0.125
(10110.001)2=(22.125 )10
T.Srikrishna, M.Sc, M.Tech. GVP
Octal to Decimal
• Ex 1: (12.2)8
1 x 81 + 2 x 80 +2 x 8-1 = 8+2+0.25 = 10.25
(12.2)8 = (10.25)10
• Ex 2: (152.25)8
(152.25)8=(1×82)+(5×81)+(2×80)+(2×8-1)+(5×8-2)
(152.25)8=64+40+2+(2×1⁄8)+(5×1⁄64)
(152.25)8=64+40+2+0.25+0.078125
(152.25)8=106.328125
• So, the decimal number of the octal number 152.25
is 106.328125
T.Srikrishna, M.Sc, M.Tech. GVP
Hexa to Decimal
• Ex 1: (152A.25)16
• We multiply each digit of 152A.25 with its
respective positional weight, and last we add
the products of all the bits with its weight.
(152A.25)16=(1×163)+(5×162)+(2×161)+(A×160)+(2×16-1)+(5×16-2)
(152A.25)16=(1×4096)+(5×256)+(2×16)+(10×1)+(2×16-1)+(5×16-2)
(152A.25)16=4096+1280+32+10+(2×1⁄16)+(5×1⁄256)
(152A.25)16=5418+0.125+0.125
(152A.25)16=5418.14453125
• So, the decimal number of the hexadecimal
number 152A.25 is 5418.14453125
T.Srikrishna, M.Sc, M.Tech. GVP
Binary to Octal Conversion
• In a binary number, the pair of three bits is equal to one octal digit.
• In the first step, we have to make the pairs of three bits on both sides of the
binary point. If there will be one or two bits left in a pair of three bits pair, we
add the required number of zeros on extreme sides.
• In the second step, we write the octal digits corresponding to each pair.
Ex 1: (111110101011.0011)2
Step 1. Firstly, we make pairs of three bits on both sides of the binary point.
111 110 101 011. 001 1
On the right side of the binary point, the last pair has only one bit. To make
it a complete pair of three bits, we added two zeros on the extreme side.
111 110 101 011. 001 100
Step 2. Then, we wrote the octal digits, which correspond to each pair.
(111110101011.0011)2=(7653.14)8
T.Srikrishna, M.Sc, M.Tech. GVP
Binary to Hexadecimal Conversion
• In a binary number, the pair of four bits is equal to one hexadecimal digit.
• In the first step, we have to make the pairs of four bits on both sides of the
binary point. If there will be one, two, or three bits left in a pair of four bits
pair, we add the required number of zeros on extreme sides.
• In the second step, we write the hexadecimal digits corresponding to each
pair.
Ex1: (10110101011.0011)2
Step 1. Firstly, we make pairs of four bits on both sides of the binary point.
111 1010 1011.0011
On the left side of the binary point, the first pair has three bits. To make it a
complete pair of four bits, add one zero on the extreme side.
0111 1010 1011.0011
Step 2. Then, we write the hexadecimal digits, which correspond to each pair.
(011110101011.0011)2=(7AB.3)16
T.Srikrishna, M.Sc, M.Tech. GVP
Octal to Binary Conversion
• The process of converting octal to binary is the
reverse process of binary to octal. We write the
three bits binary code of each octal number digit.
Ex1: (152.25)8
We write the three-bit binary digit for 1, 5, 2, and 5.
(152.25)8=(001 101 010. 010 101)2
So, the binary number of the octal number
152.25 is (001101010.010101)2
T.Srikrishna, M.Sc, M.Tech. GVP
Octal to hexadecimal conversion
• For converting octal to hexadecimal, there are
two steps required to perform, which are as
follows:
Octal to Binary then Binary to Hexa
• In the first step, we will find the binary
equivalent of the given number .
• Next, we have to make the pairs of four bits
on both sides of the binary point. If there will
be one, two, or three bits left in a pair of four
bits pair, we add the required number of zeros
on extreme sides and write the hexadecimal
digits corresponding to each pair.
T.Srikrishna, M.Sc, M.Tech. GVP
Ex1: (152.25)8 convert into Hexa decimal number
Step 1 ( Octal to Binary)
We write the three-bit binary digit for 1, 5, 2, and 5.
(152.25)8=(001101010.010101)2
So, the binary number of the octal number 152.25
is (001101010.010101)2
Step 2 ( Binary to Hexa):
• Now, we make pairs of four bits on both sides of the binary point.
0 0110 1010. 0101 01
• On the left side of the binary point, the first pair has only one digit,
and on the right side, the last pair has only two-digit. To make them
complete pairs of four bits, add zeros on extreme sides.
0000 0110 1010. 0101 0100
• Now, we write the hexadecimal digits, which correspond to each
pair.
(0000 0110 1010.0101 0100)2=(6A.54)16
T.Srikrishna, M.Sc, M.Tech. GVP
Hexadecimal to Binary Conversion
• The process of converting hexadecimal to binary
is the reverse process of binary to hexadecimal.
We write the four bits binary code of each
hexadecimal number digit.
Ex1: (152A.25)16
• We write the four-bit binary digit for 1, 5, A, 2,
and 5.
(152A.25)16=(0001 0101 0010 1010.0010 0101)2
So, the binary number of the hexadecimal number
152.25 is (1010100101010.00100101)2
T.Srikrishna, M.Sc, M.Tech. GVP
Hexadecimal to Octal Conversion
• For converting hexadecimal to octal, there are
two steps required to perform, which are as
follows:
Hexa to Binary then Binary to Octal
• In the first step, we will find the binary equivalent
of the hexadecimal number.
• Next, we have to make the pairs of three bits on
both sides of the binary point. If there will be one
or two bits left in a pair of three bits pair, we add
the required number of zeros on extreme sides
and write the octal digits corresponding to each
pair.
T.Srikrishna, M.Sc, M.Tech. GVP
Ex1: (152A.25)16
Step 1 ( Hexa to Binary) :
• We write the four-bit binary digit for 1, 5, 2, A, and 5.
• (152A.25)16=(0001 0101 0010 1010. 0010 0101)2
Step 2 ( Binary to Octal) :
• Then, we make pairs of three bits on both sides of the
binary point.
001 010 100 101 010. 001 001 010
• Then, we write the octal digit, which corresponds to
each pair.
(001010100101010.001001010)2=(12452.112)8
• So, the octal number of the hexadecimal number
152A.25 is 12452.112
T.Srikrishna, M.Sc, M.Tech. GVP
Have a healthy day
T.Srikrishna, M.Sc, M.Tech. GVP

More Related Content

Similar to presentation1-200823160102.pdf

Data representation
Data representationData representation
Data representationChew Hoong
 
Finite word length effects
Finite word length effectsFinite word length effects
Finite word length effectsPeriyanayagiS
 
digital logic circuits, digital component
digital logic circuits, digital componentdigital logic circuits, digital component
digital logic circuits, digital componentRai University
 
Number system with conversions www.eakanchha.com
Number system with conversions www.eakanchha.comNumber system with conversions www.eakanchha.com
Number system with conversions www.eakanchha.comAkanchha Agrawal
 
B sc3 unit 2 number system
B sc3  unit 2 number systemB sc3  unit 2 number system
B sc3 unit 2 number systemMahiboobAliMulla
 
Chapter two FHI.pptx
Chapter two FHI.pptxChapter two FHI.pptx
Chapter two FHI.pptxODAATUBE1
 
UNIT - I.pptx
UNIT - I.pptxUNIT - I.pptx
UNIT - I.pptxamudhak10
 
UNIT - I.pptx
UNIT - I.pptxUNIT - I.pptx
UNIT - I.pptxamudhak10
 
Course Name: Digital System Design Number System.pdf
Course Name: Digital System Design Number System.pdfCourse Name: Digital System Design Number System.pdf
Course Name: Digital System Design Number System.pdfMdJubayerFaisalEmon
 
Module 1 number systems and code1
Module 1  number systems and code1Module 1  number systems and code1
Module 1 number systems and code1Deepak John
 
More on number system
More on number systemMore on number system
More on number systemsamina khan
 
digital-electronics.pptx
digital-electronics.pptxdigital-electronics.pptx
digital-electronics.pptxsulekhasaxena2
 
Number system by ammar nawab
Number system by ammar nawabNumber system by ammar nawab
Number system by ammar nawabAmmar_n
 

Similar to presentation1-200823160102.pdf (20)

Data representation
Data representationData representation
Data representation
 
Finite word length effects
Finite word length effectsFinite word length effects
Finite word length effects
 
Number_Systems (2).ppt
Number_Systems (2).pptNumber_Systems (2).ppt
Number_Systems (2).ppt
 
DCF QNA edited
DCF QNA editedDCF QNA edited
DCF QNA edited
 
digital logic circuits, digital component
digital logic circuits, digital componentdigital logic circuits, digital component
digital logic circuits, digital component
 
Number system
Number systemNumber system
Number system
 
Number system with conversions www.eakanchha.com
Number system with conversions www.eakanchha.comNumber system with conversions www.eakanchha.com
Number system with conversions www.eakanchha.com
 
digitalelectronics.ppt
digitalelectronics.pptdigitalelectronics.ppt
digitalelectronics.ppt
 
B sc3 unit 2 number system
B sc3  unit 2 number systemB sc3  unit 2 number system
B sc3 unit 2 number system
 
Chapter two FHI.pptx
Chapter two FHI.pptxChapter two FHI.pptx
Chapter two FHI.pptx
 
Data representation in computers
Data representation in computersData representation in computers
Data representation in computers
 
UNIT - I.pptx
UNIT - I.pptxUNIT - I.pptx
UNIT - I.pptx
 
UNIT - I.pptx
UNIT - I.pptxUNIT - I.pptx
UNIT - I.pptx
 
Number systems r002
Number systems  r002Number systems  r002
Number systems r002
 
Course Name: Digital System Design Number System.pdf
Course Name: Digital System Design Number System.pdfCourse Name: Digital System Design Number System.pdf
Course Name: Digital System Design Number System.pdf
 
Module 1 number systems and code1
Module 1  number systems and code1Module 1  number systems and code1
Module 1 number systems and code1
 
Number system
Number systemNumber system
Number system
 
More on number system
More on number systemMore on number system
More on number system
 
digital-electronics.pptx
digital-electronics.pptxdigital-electronics.pptx
digital-electronics.pptx
 
Number system by ammar nawab
Number system by ammar nawabNumber system by ammar nawab
Number system by ammar nawab
 

More from 17111ASIFNOORJAMEE (11)

Lecture 01.pptx
Lecture 01.pptxLecture 01.pptx
Lecture 01.pptx
 
Ac Circuits.pptx
Ac Circuits.pptxAc Circuits.pptx
Ac Circuits.pptx
 
ac slides type 2.pdf
ac slides type 2.pdfac slides type 2.pdf
ac slides type 2.pdf
 
ac slides type 1.pdf
ac slides type 1.pdfac slides type 1.pdf
ac slides type 1.pdf
 
binarycodes.pdf
binarycodes.pdfbinarycodes.pdf
binarycodes.pdf
 
digital-180612132737.pdf
digital-180612132737.pdfdigital-180612132737.pdf
digital-180612132737.pdf
 
class 5.pptx
class 5.pptxclass 5.pptx
class 5.pptx
 
dc generator class 3-6.pptx
dc generator class 3-6.pptxdc generator class 3-6.pptx
dc generator class 3-6.pptx
 
dc generator class 2.pptx
dc generator class 2.pptxdc generator class 2.pptx
dc generator class 2.pptx
 
dc generator class 1.pptx
dc generator class 1.pptxdc generator class 1.pptx
dc generator class 1.pptx
 
NLOS UV communication using serial relay.pptx
NLOS UV communication using serial relay.pptxNLOS UV communication using serial relay.pptx
NLOS UV communication using serial relay.pptx
 

Recently uploaded

Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxJoão Esperancinha
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130Suhani Kapoor
 
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxthe ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxhumanexperienceaaa
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingrakeshbaidya232001
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...ranjana rawat
 
(TARA) Talegaon Dabhade Call Girls Just Call 7001035870 [ Cash on Delivery ] ...
(TARA) Talegaon Dabhade Call Girls Just Call 7001035870 [ Cash on Delivery ] ...(TARA) Talegaon Dabhade Call Girls Just Call 7001035870 [ Cash on Delivery ] ...
(TARA) Talegaon Dabhade Call Girls Just Call 7001035870 [ Cash on Delivery ] ...ranjana rawat
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations120cr0395
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxpranjaldaimarysona
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINESIVASHANKAR N
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Dr.Costas Sachpazis
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Call Girls in Nagpur High Profile
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxAsutosh Ranjan
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxupamatechverse
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130Suhani Kapoor
 

Recently uploaded (20)

★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
 
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxthe ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writing
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
 
(TARA) Talegaon Dabhade Call Girls Just Call 7001035870 [ Cash on Delivery ] ...
(TARA) Talegaon Dabhade Call Girls Just Call 7001035870 [ Cash on Delivery ] ...(TARA) Talegaon Dabhade Call Girls Just Call 7001035870 [ Cash on Delivery ] ...
(TARA) Talegaon Dabhade Call Girls Just Call 7001035870 [ Cash on Delivery ] ...
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptx
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptx
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptx
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
 
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEDJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
 

presentation1-200823160102.pdf

  • 2. As, we have four types of number systems so each one can be converted into the remaining three systems. These are the following conversions possible in Number System • Binary to other Number Systems. • Decimal to other Number Systems. • Octal to other Number Systems. • Hexadecimal to other Number Systems. T.Srikrishna, M.Sc, M.Tech. GVP
  • 4. Decimal to Other Base System For converting decimal to binary, there are two steps required to perform, which are as follows: Convert the integral part of decimal to Other Base System • In the first step, we perform the division operation on the integer and the successive quotient with the base of the new system. Convert the fractional part of decimal to Other Base System • Next, we perform the multiplication on the integer and the successive quotient with the base of the new system . T.Srikrishna, M.Sc, M.Tech. GVP
  • 5. Ex 1: Decimal to Binary • (10.25)10 • Note: Keep multiplying the fractional part with 2 until decimal part 0.00 is obtained. (0.25)10 = (0.01)2 • Answer: (10.25)10 = (1010.01)2 T.Srikrishna, M.Sc, M.Tech. GVP
  • 6. • Ex 2: (152.25)10 (152)10=(10011000)2 (0.25)10=(.01)2 T.Srikrishna, M.Sc, M.Tech. GVP
  • 7. Decimal to Octal Ex 1: (10.25)10 (10)10 = (12)8 Fractional part: 0.25 x 8 = 2.00 Note: Keep multiplying the fractional part with 8 until decimal part .00 is obtained. (.25)10 = (.2)8 Answer: (10.25)10 = (12.2)8 Ex 2: (152.25)10 (152)10=(230)8 (0.25)10=(2)8 • So, the octal number of the decimal number 152.25 is 230.2 T.Srikrishna, M.Sc, M.Tech. GVP
  • 8. Decimal to Hexa: • Ex1: (10.25)10 (10)10 = ( ? )16 Answer ??? • Ex2: (152.25)10 (152)10=(98)16 (0.25)10=(4)16 So, the hexadecimal number of the decimal number 152.25 is 98.4 T.Srikrishna, M.Sc, M.Tech. GVP
  • 9. Other Base System to Decimal System The process starts from multiplying the digits of given number with its corresponding positional weights. And lastly, we add all those products. T.Srikrishna, M.Sc, M.Tech. GVP
  • 10. Binary to Decimal • Ex 1: (1010.01)2 convert into decimal 1×23 + 0x22 + 1×21+ 0x20 + 0x2 -1 + 1×2 -2 = 8+0+2+0+0+0.25 = 10.25 (1010.01)2 = (10.25)10 • Ex 2: (10110.001)2 We multiplied each bit of (10110.001)2 with its respective positional weight, and last we add the products of all the bits with its weight. (10110.001)2=(1×24)+(0×23)+(1×22)+(1×21)+(0×20)+ (0×2-1)+(0×2-2)+(1×2-3) (10110.001)2=(1×16)+(0×8)+(1×4)+(1×2)+(0×1)+ (0×1⁄2)+(0×1⁄4)+(1×1⁄8) (10110.001)2=16+0+4+2+0+0+0+0.125 (10110.001)2=(22.125 )10 T.Srikrishna, M.Sc, M.Tech. GVP
  • 11. Octal to Decimal • Ex 1: (12.2)8 1 x 81 + 2 x 80 +2 x 8-1 = 8+2+0.25 = 10.25 (12.2)8 = (10.25)10 • Ex 2: (152.25)8 (152.25)8=(1×82)+(5×81)+(2×80)+(2×8-1)+(5×8-2) (152.25)8=64+40+2+(2×1⁄8)+(5×1⁄64) (152.25)8=64+40+2+0.25+0.078125 (152.25)8=106.328125 • So, the decimal number of the octal number 152.25 is 106.328125 T.Srikrishna, M.Sc, M.Tech. GVP
  • 12. Hexa to Decimal • Ex 1: (152A.25)16 • We multiply each digit of 152A.25 with its respective positional weight, and last we add the products of all the bits with its weight. (152A.25)16=(1×163)+(5×162)+(2×161)+(A×160)+(2×16-1)+(5×16-2) (152A.25)16=(1×4096)+(5×256)+(2×16)+(10×1)+(2×16-1)+(5×16-2) (152A.25)16=4096+1280+32+10+(2×1⁄16)+(5×1⁄256) (152A.25)16=5418+0.125+0.125 (152A.25)16=5418.14453125 • So, the decimal number of the hexadecimal number 152A.25 is 5418.14453125 T.Srikrishna, M.Sc, M.Tech. GVP
  • 13. Binary to Octal Conversion • In a binary number, the pair of three bits is equal to one octal digit. • In the first step, we have to make the pairs of three bits on both sides of the binary point. If there will be one or two bits left in a pair of three bits pair, we add the required number of zeros on extreme sides. • In the second step, we write the octal digits corresponding to each pair. Ex 1: (111110101011.0011)2 Step 1. Firstly, we make pairs of three bits on both sides of the binary point. 111 110 101 011. 001 1 On the right side of the binary point, the last pair has only one bit. To make it a complete pair of three bits, we added two zeros on the extreme side. 111 110 101 011. 001 100 Step 2. Then, we wrote the octal digits, which correspond to each pair. (111110101011.0011)2=(7653.14)8 T.Srikrishna, M.Sc, M.Tech. GVP
  • 14. Binary to Hexadecimal Conversion • In a binary number, the pair of four bits is equal to one hexadecimal digit. • In the first step, we have to make the pairs of four bits on both sides of the binary point. If there will be one, two, or three bits left in a pair of four bits pair, we add the required number of zeros on extreme sides. • In the second step, we write the hexadecimal digits corresponding to each pair. Ex1: (10110101011.0011)2 Step 1. Firstly, we make pairs of four bits on both sides of the binary point. 111 1010 1011.0011 On the left side of the binary point, the first pair has three bits. To make it a complete pair of four bits, add one zero on the extreme side. 0111 1010 1011.0011 Step 2. Then, we write the hexadecimal digits, which correspond to each pair. (011110101011.0011)2=(7AB.3)16 T.Srikrishna, M.Sc, M.Tech. GVP
  • 15. Octal to Binary Conversion • The process of converting octal to binary is the reverse process of binary to octal. We write the three bits binary code of each octal number digit. Ex1: (152.25)8 We write the three-bit binary digit for 1, 5, 2, and 5. (152.25)8=(001 101 010. 010 101)2 So, the binary number of the octal number 152.25 is (001101010.010101)2 T.Srikrishna, M.Sc, M.Tech. GVP
  • 16. Octal to hexadecimal conversion • For converting octal to hexadecimal, there are two steps required to perform, which are as follows: Octal to Binary then Binary to Hexa • In the first step, we will find the binary equivalent of the given number . • Next, we have to make the pairs of four bits on both sides of the binary point. If there will be one, two, or three bits left in a pair of four bits pair, we add the required number of zeros on extreme sides and write the hexadecimal digits corresponding to each pair. T.Srikrishna, M.Sc, M.Tech. GVP
  • 17. Ex1: (152.25)8 convert into Hexa decimal number Step 1 ( Octal to Binary) We write the three-bit binary digit for 1, 5, 2, and 5. (152.25)8=(001101010.010101)2 So, the binary number of the octal number 152.25 is (001101010.010101)2 Step 2 ( Binary to Hexa): • Now, we make pairs of four bits on both sides of the binary point. 0 0110 1010. 0101 01 • On the left side of the binary point, the first pair has only one digit, and on the right side, the last pair has only two-digit. To make them complete pairs of four bits, add zeros on extreme sides. 0000 0110 1010. 0101 0100 • Now, we write the hexadecimal digits, which correspond to each pair. (0000 0110 1010.0101 0100)2=(6A.54)16 T.Srikrishna, M.Sc, M.Tech. GVP
  • 18. Hexadecimal to Binary Conversion • The process of converting hexadecimal to binary is the reverse process of binary to hexadecimal. We write the four bits binary code of each hexadecimal number digit. Ex1: (152A.25)16 • We write the four-bit binary digit for 1, 5, A, 2, and 5. (152A.25)16=(0001 0101 0010 1010.0010 0101)2 So, the binary number of the hexadecimal number 152.25 is (1010100101010.00100101)2 T.Srikrishna, M.Sc, M.Tech. GVP
  • 19. Hexadecimal to Octal Conversion • For converting hexadecimal to octal, there are two steps required to perform, which are as follows: Hexa to Binary then Binary to Octal • In the first step, we will find the binary equivalent of the hexadecimal number. • Next, we have to make the pairs of three bits on both sides of the binary point. If there will be one or two bits left in a pair of three bits pair, we add the required number of zeros on extreme sides and write the octal digits corresponding to each pair. T.Srikrishna, M.Sc, M.Tech. GVP
  • 20. Ex1: (152A.25)16 Step 1 ( Hexa to Binary) : • We write the four-bit binary digit for 1, 5, 2, A, and 5. • (152A.25)16=(0001 0101 0010 1010. 0010 0101)2 Step 2 ( Binary to Octal) : • Then, we make pairs of three bits on both sides of the binary point. 001 010 100 101 010. 001 001 010 • Then, we write the octal digit, which corresponds to each pair. (001010100101010.001001010)2=(12452.112)8 • So, the octal number of the hexadecimal number 152A.25 is 12452.112 T.Srikrishna, M.Sc, M.Tech. GVP
  • 21. Have a healthy day T.Srikrishna, M.Sc, M.Tech. GVP