What is the binary value equivalent to the following hexadec
What is the binary value equivalent to the following hexadecimal 39A8h? A23Eh?
Solution
Please find the answers below:
a) 39A8h:
3 => 0 + 0 +1x21 + 1x20 ; Thus binary value of 3 = 0 0 1 1
9 => 1x23 + 0 + 0 + 1x20 ; Thus binary value of 9 = 1 0 0 1
A => 1x23 + 0 + 1x21 + 0 ; Thus binary value of A = 1 0 1 0
8 => 1x23 + 0 + 0 + 0 ; Thus binary value of 9 = 1 0 0 0
Thus the binary equivalent of 39A8 h = 0011 1001 1010 1000
b) A23Eh
A => 1x23 + 0 + 1x21 + 0 ; Thus binary value of A = 1 0 1 0
2 => 0 + 0 +1x21 + 0 ; Thus binary value of 2 = 0 0 1 0
3 => 0 + 0 +1x21 + 1x20 ; Thus binary value of 3 = 0 0 1 1
E => 1x23 + 1x22 + 1x21 + 0 ; Thus binary value of E = 1 1 1 0
Thus the binary equivalent of A23E h = 1010 0010 0011 1110
