Conversion

Convert binary number 1100100 into decimal number.


The answer is 100.

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.

2 solutions

Sudip Maji
Jul 15, 2014

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 = 100 2^2+2^5+2^6 = 100

Sonali Srivastava
Jul 18, 2014

using rule 64 32 16 8 4 2 1 values are 1 1 0 0 1 0 0 64+32+4=100

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...