SlideShare una empresa de Scribd logo
1 de 35
Descargar para leer sin conexión
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.

Más contenido relacionado

Destacado

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
 

Destacado (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 a 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 a 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
 

Último

Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 
+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@
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
panagenda
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
Joaquim Jorge
 

Último (20)

Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
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
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
+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...
 
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
 
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...
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
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
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
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...
 

Number systems ii