SlideShare a Scribd company logo
1 of 35
Download to read offline
Number Systems - II

        ECE – B
     Ist semester.
Common Number Systems
                             Used by Used in
System    Base Symbols       humans? computers?
Decimal    10   0, 1, … 9      Yes       No
Binary     2    0, 1           No        Yes
Octal      8    0, 1, … 7      No        No
Hexa-      16   0, 1, … 9,     No        No
decimal         A, B, … F
Hexa-
Decimal   Binary   Octal decimal
  0            0    0       0
  1            1    1       1
  2           10    2       2
  3           11    3       3
  4          100    4       4
  5          101    5       5
  6          110    6       6
  7          111    7       7
Conversion Among Bases
• The possibilities:

          Decimal         Octal




          Binary       Hexadecimal
Quick Example



2510 = 110012 = 318 = 1916

     Base
Binary to Decimal
• Technique
  – Multiply each bit by 2n, where n is the “weight” of
    the bit
  – The weight is the position of the bit, starting from
    0 on the right
  – Add the results
Example
  Bit “0”



1010112 =>    1   x   20   =    1
              1   x   21   =    2
              0   x   22   =    0
              1   x   23   =    8
              0   x   24   =    0
              1   x   25   =   32
                               4310
Example for the fractional number.




             Usha Mary Sharma. DBCET
Hexadecimal to Binary
• Technique
  – Convert each hexadecimal digit to a 4-bit
    equivalent binary representation
Example
10AF16 = ?2




               1    0    A   F


              0001 0000 1010 1111




                        10AF16 = 00010000101011112
Decimal to Octal
• Technique
  – Divide by 8
  – Keep track of the remainder
Example
123410 = ?8



              8   1234
                   154   2
              8
                   19    2
              8
                    2    3
              8
                    0    2




                             123410 = 23228
Example




Usha Mary Sharma. DBCET
Octal to Decimal
• Technique
  – Multiply each bit by 8n, where n is the “weight” of
    the bit
  – The weight is the position of the bit, starting from
    0 on the right
  – Add the results
Example


7248 =>   4 x 80 =     4
          2 x 81 =    16
          7 x 82 =   448
                     46810
Hexadecimal to Decimal
• Technique
  – Multiply each bit by 16n, where n is the “weight”
    of the bit
  – The weight is the position of the bit, starting from
    0 on the right
  – Add the results
Example


ABC16 =>   C x 160 = 12 x   1 =   12
           B x 161 = 11 x 16 = 176
           A x 162 = 10 x 256 = 2560
                                274810
Example




Usha Mary Sharma. DBCET
Decimal to Binary
• Technique
  – Divide by two, keep track of the remainder
  – First remainder is bit 0 (LSB, least-significant bit)
  – Second remainder is bit 1
  – Etc.
Example
12510 = ?2   2 125
             2 62     1

             2   31   0
                 15   1
             2
                 7    1
             2
             2    3   1

             2    1   1
                  0   1




                          12510 = 11111012
Example




Usha Mary Sharma. DBCET
Octal to Binary
• Technique
  – Convert each octal digit to a 3-bit equivalent
    binary representation
Example
7058 = ?2



             7   0   5


            111 000 101




                          7058 = 1110001012
Decimal to Hexadecimal
• Technique
  – Divide by 16
  – Keep track of the remainder
Example
123410 = ?16



               16   1234
               16     77   2

               16      4   13 = D
                       0   4




                                    123410 = 4D216
Example




Usha Mary Sharma. DBCET
Binary to Octal
• Technique
  – Group bits in threes, starting on right
  – Convert to octal digits
Example
10110101112 = ?8




                   1 011 010 111


                   1   3   2   7




                                   10110101112 = 13278
Binary to Hexadecimal
• Technique
  – Group bits in fours, starting on right
  – Convert to hexadecimal digits
Example
10101110112 = ?16




                10 1011 1011


                2     B    B




                           10101110112 = 2BB16
Octal to Hexadecimal
• Technique
  – Use binary as an intermediary
Example
10768 = ?16


               1         0        7      6


              001       000       111   110




                    2         3         E




                                              10768 = 23E16
Hexadecimal to Octal
• Technique
  – Use binary as an intermediary
Example
1F0C16 = ?8
         1        F           0         C


        0001     1111       0000       1100



             1    7     4          1        4




                                       1F0C16 = 174148
All the best.

More Related Content

Viewers also liked

Data, Information System, Processing
Data, Information System, ProcessingData, Information System, Processing
Data, Information System, Processing
nirupam16
 
Control automático de transferencia de energía eléctrica
Control automático de transferencia de energía eléctricaControl automático de transferencia de energía eléctrica
Control automático de transferencia de energía eléctrica
Pedro Chavez
 

Viewers also liked (7)

Data, Information System, Processing
Data, Information System, ProcessingData, Information System, Processing
Data, Information System, Processing
 
Control automático de transferencia de energía eléctrica
Control automático de transferencia de energía eléctricaControl automático de transferencia de energía eléctrica
Control automático de transferencia de energía eléctrica
 
Learn BEM: CSS Naming Convention
Learn BEM: CSS Naming ConventionLearn BEM: CSS Naming Convention
Learn BEM: CSS Naming Convention
 
How to Build a Dynamic Social Media Plan
How to Build a Dynamic Social Media PlanHow to Build a Dynamic Social Media Plan
How to Build a Dynamic Social Media Plan
 
SEO: Getting Personal
SEO: Getting PersonalSEO: Getting Personal
SEO: Getting Personal
 
Lightning Talk #9: How UX and Data Storytelling Can Shape Policy by Mika Aldaba
Lightning Talk #9: How UX and Data Storytelling Can Shape Policy by Mika AldabaLightning Talk #9: How UX and Data Storytelling Can Shape Policy by Mika Aldaba
Lightning Talk #9: How UX and Data Storytelling Can Shape Policy by Mika Aldaba
 
Succession “Losers”: What Happens to Executives Passed Over for the CEO Job?
Succession “Losers”: What Happens to Executives Passed Over for the CEO Job? Succession “Losers”: What Happens to Executives Passed Over for the CEO Job?
Succession “Losers”: What Happens to Executives Passed Over for the CEO Job?
 

Similar to Number systems ii

Computer number systems
Computer number systemsComputer number systems
Computer number systems
Revi Shahini
 
chapter 3 number systems register transfer
chapter 3 number systems register transferchapter 3 number systems register transfer
chapter 3 number systems register transfer
rashidxasan369
 
Number systems presentation
Number systems presentationNumber systems presentation
Number systems presentation
Jiian Francisco
 

Similar to Number systems ii (20)

Number systems
Number systemsNumber systems
Number systems
 
Computer number systems
Computer number systemsComputer number systems
Computer number systems
 
Number Systems
Number SystemsNumber Systems
Number Systems
 
Number Systems
Number SystemsNumber Systems
Number Systems
 
chapter 3 number systems register transfer
chapter 3 number systems register transferchapter 3 number systems register transfer
chapter 3 number systems register transfer
 
Number system de (2131004) - 160920107003
Number system    de (2131004) - 160920107003Number system    de (2131004) - 160920107003
Number system de (2131004) - 160920107003
 
Number Systems
Number SystemsNumber Systems
Number Systems
 
Week9.pptx
Week9.pptxWeek9.pptx
Week9.pptx
 
Number Systems.pptx
Number Systems.pptxNumber Systems.pptx
Number Systems.pptx
 
Number systems
Number systemsNumber systems
Number systems
 
number system 1.pptx
number system 1.pptxnumber system 1.pptx
number system 1.pptx
 
Number systems presentation
Number systems presentationNumber systems presentation
Number systems presentation
 
Number systems r002
Number systems  r002Number systems  r002
Number systems r002
 
Number setetertystems i_
Number setetertystems i_Number setetertystems i_
Number setetertystems i_
 
01.Number Systems
01.Number Systems01.Number Systems
01.Number Systems
 
Computer Number System
Computer Number SystemComputer Number System
Computer Number System
 
01.number systems
01.number systems01.number systems
01.number systems
 
ITC lecture 3.pptx
ITC lecture 3.pptxITC lecture 3.pptx
ITC lecture 3.pptx
 
Number system conversion
Number system conversionNumber system conversion
Number system conversion
 
Cse115 lecture01numbersystems
Cse115 lecture01numbersystemsCse115 lecture01numbersystems
Cse115 lecture01numbersystems
 

Recently uploaded

Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
WSO2
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 

Recently uploaded (20)

Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 

Number systems ii