Monday, September 22, 2014

                              Outline of Hex to Decimal

Decimal = base 10
Hexadecimal = base 16


      Hexadecimal to Decimal

        1.write out the values of the Hexadecimal.
                EX:     8        11      4
                         
         2. write   the corresponding decimal to the number
                           256     16       1
         3. Multiply Hexadecimal by the numbers in step 2
                  8*256=2048
                  11*16=176
                   4*1=4

         4. add the results to get the decimal
                      222810
          

      Decimal to Hexadecimal


        1. Write down Hexadecimal
                    243
         2. Divide by 16.
                                15 R3   
                     16  /243                      
                              16
                             83
                            -80
                                3
         3. keep dividing until answer is 0.
                        0  R15
                16/15

         4. convert  >9 convert to hexus
                        F3 






No comments:

Post a Comment