What is Conversion?
Conversion is the act of changing a number from one number system to another. To convert from base 2, base 8, or base 16 to base 10, rank the digits from right to left starting with zero, then express the number using its base.
Base 2 to Base 10
(1011)2 = 1×23 + 0×22 + 1×21 + 1×20 = 8+0+2+1 = (11)10
(101.011)2 = 1×22 + 0×21 + 1×20 + 0×2-1 + 1×2-2 + 1×2-3 = 4+0+1+0+0.25+0.125 = (5.375)10
Base 8 to Base 10
(237)8 = 2×82 + 3×81 + 7×80 = 128+24+7 = (159)10
Base 16 to Base 10
(4AC9)16 = 4×163 + 10×162 + 12×161 + 9×160 = (19145)10