Binary to denary test – 8 digits

How do I convert 8 digit binary to denary?

To convert binary numbers to denary (sometimes referred to as decimal) we simply use a table like the one below:
128 64 32 16 8 4 2 1
_ _ _ _ _ _ _ _

The numbers on the top row always stay the same. We simply take the binary number we have been given and put it in the row below the numbers.

Example

Convert the number 00110011 into denary.
First we put our binary number into the bottom row of our table.
128 64 32 16 8 4 2 1
0 0 1 1 0 0 1 1

We now go through each column starting from the left.
In our first column there is a 0. We do not need to do anything.
In the second column there is a 0. We do not need to do anything.
In the third column there is a 1. Anytime there is a 1 in a column we take the number from the top row in this case a 32 and store it so we can add it to other numbers later.
In the fourth column there is also a 1. As there is a 1 in the bottom column we take the number from the top row which is a 16 and store it with the other number.
In the fifth column there is a 0. We do not need to do anything.
In the sixth column there is a 0. We do not need to do anything.
In the seventh column there is a 1. Anytime there is a 1 in a column we take the number from the top row in this case a 2 and store it so we can add it to other numbers later.
In the fourth column there is also a 1. As there is a 1 in the bottom column we take the number from the top row which is a 1 and store it with the other number.

All the numbers we have stored we now add together to give us our denary number. 32 + 16 + 2 + 1 = 3. 0011 in binary is 51 in denary.

Convert the following 8 digit binary number to denary / decimal:

Enter your answer:

That is right!

The right answer is

That is not correct

The right answer is