Convert binary number 1100100 into decimal number.
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Easiest way to convert small binary numbers to decimal number is summing up the high bits(1) with: 2^(position of the bit) . Remember position counting starts with 0 and from right hand side. Now, for this question: high bits occurs at 2nd, 5th, 6th position from the right.
So the decimal number will be: 2 2 + 2 5 + 2 6 = 1 0 0