CSC231 Exercises Binary Hexadecimal

From dftwiki3
Revision as of 09:41, 8 September 2008 by Thiebaut (talk | contribs)
Jump to: navigation, search

Exercises on number conversion

Binary to decimal and hexadecimal

Convert the following numbers to their (unsigned) decimal and hexadecimal equivalent. For each one indicate the amount of storage required to store them (nybble, byte, word, double-word):

        0

        1111

        0000 1110 0001 1101 0000 0000

Hex to binary and decimal

Same question for these numbers:

        1a

        1234

        1010

        ffff

Decimal to binary and hex

Same question for these numbers:


         15
  
         129

         32767


Converter