Exercises: Numeric Conversion
Convert 1234 decimal to hexadecimal. [0x4D2]
Convert 0x321 hexadecimal to decimal. [801]
Convert 123 decimal to octal. [173]
Convert 321 octal to decimal. [209]
Convert 123 decimal to binary. [1111011]
Convert 123 decimal to binary using your answer from #2.
Convert 801 decimal to binary. [1100100001]
Convert 801 decimal to binary using your answer from #1.
Convert binary 111011001 to octal. [731]
Convert binary 11011010 to hex. [0xDA]