Convert the following numbers from the base shown to base 10. a. 110010111_2 b. 12674_8 c. A491_14 d. 278D_16
Expert Answer
4.a) Converting binary values in decimal:
1100101112 = 1*28 + 1*27 + 0*26 + 0*25 + 1*24 + 0*23 + 1*22 + 1*21 + 1*20= (407)10
4.b) Converting octal values in decimal:
126748 = 1*84 + 2*83 + 6*82 + 7*81 + 4*80= (5564)10
4.c) Converting base 14 number values in decimal:
A49114 = A*143 + 4*142 + 9*141 + 1*140 = 10*143 + 4*142 + 9*141 + 1*140= (28351)10
4.d) Converting base 16 number values in decimal:
278D16 = 2*163 + 7*162 + 8*161 + D*160 = 2*163 + 7*162 + 8*161 + 13*160= (10125)10