Perform each of the following conversions ABC16 10 ABC16 8
     Perform each of the following conversions:  (ABC)_16 = (______)_10  (ABC)_16 = (______)_8  (ABC)_16 = (______)_BCD  (ABC)_16 = (______)_2  (ABC)_16 = (______)_7 
  
  Solution
1.
(a) (ABC)16 = ( )10
The decimal value of A = 10, B= 11, C = 12
(ABC)16 = 12*160 + 11*161 + 10*162
(ABC)16 = 12+176+2560
(ABC)16 = (2748)10
(b) (ABC)16 = ( )8
To convert it into octal ,first convert into binary.
The decimal value of A = 10, B= 11, C = 12
The binary value of A = 1010, B= 1011, C = 1100
(ABC)16 = (101010111100)2
Now divide those numbers into 3 bits and you get 5=101, 2=010, 7=111, 4=100
So, (ABC)16 = (5274)8
(c) (ABC)16 = ( )BCD
(ABC)16 = (0010011101001000 )BCD
(d) (ABC)16 = ( )2
The decimal value of A = 10, B= 11, C = 12
The binary value of A = 1010, B= 1011, C = 1100
(ABC)16 = (101010111100)2
(e) (ABC)16 = ( )7
(ABC)16 = (11004 )7

