SlideShare una empresa de Scribd logo
1 de 8
CSE Assignment
Name: Md. Raihan
Dept: CSE
Course: cse105
ID: 2012-2-60-040
sce: 4
(111000110010)₂ conversion                    base2 to base8 conversion
                                              Equivalent value list
Binary to octal→
                                                     binary    Octal
base2(binary)= 111000110010
base8(octal)= 7062 oct
                                                     000       0
So, (111000110010)₂=(7062)₈
                                                     001       1
binary to decimal→
Base8(octal)= 7062                                   010       2
            = 7*8³+0*8²+6*8¹+2*8°
                                                     011       3
            = 3634 dec
So, (111000110010)₂=(3634)₁₀
                                                     100       4
binary to hexadecimal →
                                                     101       5
                remainder
3634/16= 227       2 in hexadecimal form             110       6
227/16 = 14         3 in hexademal form
14/16 = 0          14=E in hexadecimal form          111       7

So,(111000110010)₂=(E32)₁₆
(70642)₈ conversion
Octal to decimal→
Oct= 76042 = 7*8´+6*8³+0*8²+4*8¹+2*8° = 31778 dec
So, (76042)₈= (31778)₁₀
                         Decimal
                                   Operation   Quotient Remainder   Binary Result
                         Number
octal to binary→         31778     ÷2=         15889     0          0
                         15889     ÷2=         7944      1          10
                         7944      ÷2=         3972      0          010
                         3972      ÷2=         1986      0          0010
                         1986      ÷2=         993       0          00010
                         993       ÷2=         496       1          100010
                         496       ÷2=         248       0          0100010
                         248       ÷2=         124       0          00100010
                         124       ÷2=         62        0          000100010
                         62        ÷2=         31        0          0000100010
                         31        ÷2=         15        1          10000100010
                         15        ÷2=         7         1          110000100010
                         7         ÷2=         3         1          1110000100010
                         3         ÷2=         1         1          11110000100010
                         1         ÷2=         0         1          111110000100010
Octal to hexadecimal→

(76042)₈= (31778)₁₀

Decimal    operation    quotient remainder
number
31778      ÷16 =        1986     2
1986       ÷16=         124      2
124        ÷16 =        7        12=C
7          ÷16=         0        7
0          Done.


So,
  (76042)₈=(7C22)₁₆
(786)₁₀ conversion

Decimal to binary→
Decimal      operation   quotient   remainder   Binary result
number
786          ÷2=         393        0           0
393          ÷2=         196        1           10
196          ÷2=         98         0           010
98           ÷2=         49         0           0010
49           ÷2=         24         1           10010
24           ÷2=         12         0           010010
12           ÷2=         6          0           0010010
6            ÷2=         3          0           00010010
3            ÷2=         1          1           100010010
1            ÷2=         0          1           1100010010

 So, (786)₁₀=(1100010010)₂
Decimal to octal→
  Decimal                                             Octal
               Operation       Quotient   Remainder
  Number                                              Result
  786        ÷8=                98           2        2
  98         ÷8=                12           2        22
  12         ÷8=                 1           4        422
  1          ÷8=                 0           1        1422
  0          done.

So, (786)₁₀ = (1422)₈
Decimal to hexadecimal→
  Decimal                                             Hexadecimal
               Operation       Quotient   Remainder
  Number                                              Result
  786         ÷ 16 =             49          2        2
  49          ÷ 16 =              3          1        12
  3           ÷ 16 =              0          3        312=3C
  0           done.
So, (786)₁₀= (312)₁₆ =(3C)₁₆
FA09 conversion
                                              Hexa-decimal value list:
Hexa-dec to decimal→
FA09 hexadecimal:                                 Hexa
                                                              0    1   2    3    4    5    6    7
                                                  decimal:
= ((F)*163) + ((A)*162) + (0*161) + (9*160)
= (15*163) + (10*162) + (0* 161) + (9*160)        Decimal:    0    1   2    3    4    5    6    7
= (15* 4096) + (10* 256) + (0* 16) + (9*1)        Hexa
                                                              8    9   A    B    C    D    E    F
= 61440+ 2560 + 0+9                               decimal:

= 64009 decimal                                   Decimal:    8    9   10   11   12   13   14   15


Hexadecimal to octal→
(FA09)₁₆=(64009)₈
 Decimal
              Operation      Quotient     Remainder          octal Result
 Number
 64009       ÷8=               8001           1              1
 8001        ÷8=               1000           1              11
 1000        ÷8=                125           0              011
 125         ÷8=                  15          5              5011
 15          ÷8=                   1          7              75011
 1           ÷8=                   0          1              175011

So, (FA09)₁₆ =(175011)₈
hexadecimal digit to obtain the equivalent
Hexadecimal to binary→
                                          group of four binary digits list:

Hexa
         F       A       0         9                   Hexa
decimal=                                                              0 1 2 3 4 5 6 7
                                                       decimal:
Binary=   1111 1010      0000      1001
      = 1111101000001001 binary
                                                                      0   0   0   0   0   0   0   0
                                                                      0   0   0   0   1   1   1   1
                                                       Binary:
                                                                      0   0   1   1   0   0   1   1
                                                                      0   1   0   1   0   1   0   1
  So,
     (FA09)₁₆=(111101000001001)₂                       Hexa
                                                                8 9 A B C DE F
                                                       decimal:

                                                                  1   1   1       1   1   1   1   1
                                                                  0   0   0       0   1   1   1   1
                                                       Binary:
                                                                  0   0   1       1   0   0   1   1
                                                                  0   1   0       1   0   1   0   1

Más contenido relacionado

La actualidad más candente

La actualidad más candente (20)

ALL ABOUT NUMBER SYSTEMS
ALL ABOUT NUMBER SYSTEMSALL ABOUT NUMBER SYSTEMS
ALL ABOUT NUMBER SYSTEMS
 
01.Number Systems
01.Number Systems01.Number Systems
01.Number Systems
 
Ch21 19
Ch21 19Ch21 19
Ch21 19
 
Alg2 Final Keynote
Alg2 Final KeynoteAlg2 Final Keynote
Alg2 Final Keynote
 
Number system
Number systemNumber system
Number system
 
Day 4 evaluating with add and subtract
Day 4 evaluating with add and subtractDay 4 evaluating with add and subtract
Day 4 evaluating with add and subtract
 
Digital logic design lecture 03
Digital logic design   lecture 03 Digital logic design   lecture 03
Digital logic design lecture 03
 
Slideshare
SlideshareSlideshare
Slideshare
 
Lecture4 binary-numbers-logic-operations
Lecture4  binary-numbers-logic-operationsLecture4  binary-numbers-logic-operations
Lecture4 binary-numbers-logic-operations
 
Fundamentos matematicas
Fundamentos matematicasFundamentos matematicas
Fundamentos matematicas
 
Topic 3 decimals
Topic 3   decimalsTopic 3   decimals
Topic 3 decimals
 
Number system and its conversions
Number system and its conversionsNumber system and its conversions
Number system and its conversions
 
Maths micro teaching copy
Maths micro teaching   copyMaths micro teaching   copy
Maths micro teaching copy
 
Number Systems
Number SystemsNumber Systems
Number Systems
 
Math Studies Calculus Application
Math Studies Calculus ApplicationMath Studies Calculus Application
Math Studies Calculus Application
 
1
11
1
 
Graph functions
Graph functionsGraph functions
Graph functions
 
Per6 basis_Representations Of Integers
Per6 basis_Representations Of IntegersPer6 basis_Representations Of Integers
Per6 basis_Representations Of Integers
 
Slide03 Number System and Operations Part 1
Slide03 Number System and Operations Part 1Slide03 Number System and Operations Part 1
Slide03 Number System and Operations Part 1
 
Maths 301 key_sem_1_2007_2008
Maths 301 key_sem_1_2007_2008Maths 301 key_sem_1_2007_2008
Maths 301 key_sem_1_2007_2008
 

Similar a Cse

2.1 data represent on cpu
2.1 data represent on cpu2.1 data represent on cpu
2.1 data represent on cpuWan Afirah
 
digital-electronics.pptx
digital-electronics.pptxdigital-electronics.pptx
digital-electronics.pptxsulekhasaxena2
 
Binary octal
Binary octalBinary octal
Binary octaldrdipo4
 
Konversi bilangan octal
Konversi bilangan octalKonversi bilangan octal
Konversi bilangan octalEko Prakoso
 
Amth250 octave matlab some solutions (4)
Amth250 octave matlab some solutions (4)Amth250 octave matlab some solutions (4)
Amth250 octave matlab some solutions (4)asghar123456
 
01.number systems
01.number systems01.number systems
01.number systemsrasha3
 
PDT DC015 Chapter 2 Computer System 2017/2018 (d)
PDT DC015 Chapter 2 Computer System 2017/2018 (d)PDT DC015 Chapter 2 Computer System 2017/2018 (d)
PDT DC015 Chapter 2 Computer System 2017/2018 (d)Fizaril Amzari Omar
 
Lec2 Intro to Computer Engineering by Hsien-Hsin Sean Lee Georgia Tech -- Num...
Lec2 Intro to Computer Engineering by Hsien-Hsin Sean Lee Georgia Tech -- Num...Lec2 Intro to Computer Engineering by Hsien-Hsin Sean Lee Georgia Tech -- Num...
Lec2 Intro to Computer Engineering by Hsien-Hsin Sean Lee Georgia Tech -- Num...Hsien-Hsin Sean Lee, Ph.D.
 
Mock cat solutions paper no 1
Mock cat solutions paper no 1Mock cat solutions paper no 1
Mock cat solutions paper no 1Vandan Kashyap
 
unit-i-number-systems.pdf
unit-i-number-systems.pdfunit-i-number-systems.pdf
unit-i-number-systems.pdfRameshK531901
 
Matlab Assignment JK Institute
Matlab Assignment JK InstituteMatlab Assignment JK Institute
Matlab Assignment JK InstituteOm Prakash
 
PST SC015 Chapter 2 Computer System 2017/2018
PST SC015 Chapter 2 Computer System 2017/2018PST SC015 Chapter 2 Computer System 2017/2018
PST SC015 Chapter 2 Computer System 2017/2018Fizaril Amzari Omar
 

Similar a Cse (20)

2.1 data represent on cpu
2.1 data represent on cpu2.1 data represent on cpu
2.1 data represent on cpu
 
digital-electronics.pptx
digital-electronics.pptxdigital-electronics.pptx
digital-electronics.pptx
 
Binary octal
Binary octalBinary octal
Binary octal
 
Bolum1cozumler
Bolum1cozumlerBolum1cozumler
Bolum1cozumler
 
Konversi bilangan octal
Konversi bilangan octalKonversi bilangan octal
Konversi bilangan octal
 
Number system
Number systemNumber system
Number system
 
Amth250 octave matlab some solutions (4)
Amth250 octave matlab some solutions (4)Amth250 octave matlab some solutions (4)
Amth250 octave matlab some solutions (4)
 
01.number systems
01.number systems01.number systems
01.number systems
 
Myrecharge ppt new
Myrecharge ppt new Myrecharge ppt new
Myrecharge ppt new
 
PDT DC015 Chapter 2 Computer System 2017/2018 (d)
PDT DC015 Chapter 2 Computer System 2017/2018 (d)PDT DC015 Chapter 2 Computer System 2017/2018 (d)
PDT DC015 Chapter 2 Computer System 2017/2018 (d)
 
Lec2 Intro to Computer Engineering by Hsien-Hsin Sean Lee Georgia Tech -- Num...
Lec2 Intro to Computer Engineering by Hsien-Hsin Sean Lee Georgia Tech -- Num...Lec2 Intro to Computer Engineering by Hsien-Hsin Sean Lee Georgia Tech -- Num...
Lec2 Intro to Computer Engineering by Hsien-Hsin Sean Lee Georgia Tech -- Num...
 
Problemas de funciones
Problemas de funcionesProblemas de funciones
Problemas de funciones
 
Ch15p
Ch15pCh15p
Ch15p
 
Mock cat solutions paper no 1
Mock cat solutions paper no 1Mock cat solutions paper no 1
Mock cat solutions paper no 1
 
unit-i-number-systems.pdf
unit-i-number-systems.pdfunit-i-number-systems.pdf
unit-i-number-systems.pdf
 
Ch13s
Ch13sCh13s
Ch13s
 
ch3a-binary-numbers.ppt
ch3a-binary-numbers.pptch3a-binary-numbers.ppt
ch3a-binary-numbers.ppt
 
Matlab Assignment JK Institute
Matlab Assignment JK InstituteMatlab Assignment JK Institute
Matlab Assignment JK Institute
 
Ch15s
Ch15sCh15s
Ch15s
 
PST SC015 Chapter 2 Computer System 2017/2018
PST SC015 Chapter 2 Computer System 2017/2018PST SC015 Chapter 2 Computer System 2017/2018
PST SC015 Chapter 2 Computer System 2017/2018
 

Último

2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptxMaritesTamaniVerdade
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxRamakrishna Reddy Bijjam
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxAreebaZafar22
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docxPoojaSen20
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxVishalSingh1417
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentationcamerronhm
 
Dyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptxDyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptxcallscotland1987
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhikauryashika82
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...christianmathematics
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfSherif Taha
 
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxSKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxAmanpreet Kaur
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxnegromaestrong
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.pptRamjanShidvankar
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxVishalSingh1417
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...ZurliaSoop
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Jisc
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfAdmir Softic
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxheathfieldcps1
 

Último (20)

2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docx
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptx
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentation
 
Asian American Pacific Islander Month DDSD 2024.pptx
Asian American Pacific Islander Month DDSD 2024.pptxAsian American Pacific Islander Month DDSD 2024.pptx
Asian American Pacific Islander Month DDSD 2024.pptx
 
Dyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptxDyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptx
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdf
 
Spatium Project Simulation student brief
Spatium Project Simulation student briefSpatium Project Simulation student brief
Spatium Project Simulation student brief
 
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxSKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptx
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 

Cse

  • 1. CSE Assignment Name: Md. Raihan Dept: CSE Course: cse105 ID: 2012-2-60-040 sce: 4
  • 2. (111000110010)₂ conversion base2 to base8 conversion Equivalent value list Binary to octal→ binary Octal base2(binary)= 111000110010 base8(octal)= 7062 oct 000 0 So, (111000110010)₂=(7062)₈ 001 1 binary to decimal→ Base8(octal)= 7062 010 2 = 7*8³+0*8²+6*8¹+2*8° 011 3 = 3634 dec So, (111000110010)₂=(3634)₁₀ 100 4 binary to hexadecimal → 101 5 remainder 3634/16= 227 2 in hexadecimal form 110 6 227/16 = 14 3 in hexademal form 14/16 = 0 14=E in hexadecimal form 111 7 So,(111000110010)₂=(E32)₁₆
  • 3. (70642)₈ conversion Octal to decimal→ Oct= 76042 = 7*8´+6*8³+0*8²+4*8¹+2*8° = 31778 dec So, (76042)₈= (31778)₁₀ Decimal Operation Quotient Remainder Binary Result Number octal to binary→ 31778 ÷2= 15889 0 0 15889 ÷2= 7944 1 10 7944 ÷2= 3972 0 010 3972 ÷2= 1986 0 0010 1986 ÷2= 993 0 00010 993 ÷2= 496 1 100010 496 ÷2= 248 0 0100010 248 ÷2= 124 0 00100010 124 ÷2= 62 0 000100010 62 ÷2= 31 0 0000100010 31 ÷2= 15 1 10000100010 15 ÷2= 7 1 110000100010 7 ÷2= 3 1 1110000100010 3 ÷2= 1 1 11110000100010 1 ÷2= 0 1 111110000100010
  • 4. Octal to hexadecimal→ (76042)₈= (31778)₁₀ Decimal operation quotient remainder number 31778 ÷16 = 1986 2 1986 ÷16= 124 2 124 ÷16 = 7 12=C 7 ÷16= 0 7 0 Done. So, (76042)₈=(7C22)₁₆
  • 5. (786)₁₀ conversion Decimal to binary→ Decimal operation quotient remainder Binary result number 786 ÷2= 393 0 0 393 ÷2= 196 1 10 196 ÷2= 98 0 010 98 ÷2= 49 0 0010 49 ÷2= 24 1 10010 24 ÷2= 12 0 010010 12 ÷2= 6 0 0010010 6 ÷2= 3 0 00010010 3 ÷2= 1 1 100010010 1 ÷2= 0 1 1100010010 So, (786)₁₀=(1100010010)₂
  • 6. Decimal to octal→ Decimal Octal Operation Quotient Remainder Number Result 786 ÷8= 98 2 2 98 ÷8= 12 2 22 12 ÷8= 1 4 422 1 ÷8= 0 1 1422 0 done. So, (786)₁₀ = (1422)₈ Decimal to hexadecimal→ Decimal Hexadecimal Operation Quotient Remainder Number Result 786 ÷ 16 = 49 2 2 49 ÷ 16 = 3 1 12 3 ÷ 16 = 0 3 312=3C 0 done. So, (786)₁₀= (312)₁₆ =(3C)₁₆
  • 7. FA09 conversion Hexa-decimal value list: Hexa-dec to decimal→ FA09 hexadecimal: Hexa 0 1 2 3 4 5 6 7 decimal: = ((F)*163) + ((A)*162) + (0*161) + (9*160) = (15*163) + (10*162) + (0* 161) + (9*160) Decimal: 0 1 2 3 4 5 6 7 = (15* 4096) + (10* 256) + (0* 16) + (9*1) Hexa 8 9 A B C D E F = 61440+ 2560 + 0+9 decimal: = 64009 decimal Decimal: 8 9 10 11 12 13 14 15 Hexadecimal to octal→ (FA09)₁₆=(64009)₈ Decimal Operation Quotient Remainder octal Result Number 64009 ÷8= 8001 1 1 8001 ÷8= 1000 1 11 1000 ÷8= 125 0 011 125 ÷8= 15 5 5011 15 ÷8= 1 7 75011 1 ÷8= 0 1 175011 So, (FA09)₁₆ =(175011)₈
  • 8. hexadecimal digit to obtain the equivalent Hexadecimal to binary→ group of four binary digits list: Hexa F A 0 9 Hexa decimal= 0 1 2 3 4 5 6 7 decimal: Binary= 1111 1010 0000 1001 = 1111101000001001 binary 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 Binary: 0 0 1 1 0 0 1 1 0 1 0 1 0 1 0 1 So, (FA09)₁₆=(111101000001001)₂ Hexa 8 9 A B C DE F decimal: 1 1 1 1 1 1 1 1 0 0 0 0 1 1 1 1 Binary: 0 0 1 1 0 0 1 1 0 1 0 1 0 1 0 1