Exercises - Bases

  1. List 10 consecutive binary values, starting with the binary equivalent of $200_{10}$  

    11001000
    11001001
    11001010
    11001011
    11001100
    11001101
    11001110
    11001111
    11010000
    11010001
    

  2. List 10 consecutive hexadecimal values, starting with $A34BD$  

    A34BD
    A34BE
    A34BF
    A34C0
    A34C1
    A34C2
    A34C3
    A34C4
    A34C5
    A34C6
    

  3. Convert the hexadecimal value $A1B2C3D4E5F6789$ to binary  

    1010 0001 1011 0010 1100 0011 1101 0100 1110 0101 1111 0110 0111 1000 1001