http://www.permadi.com/tutorial/numBinToDec/index.html
2006-09-17 12:00:44
·
answer #1
·
answered by Jin Tao 3
·
0⤊
0⤋
57
32 16 8 4 2 1
1 1 1 0 0 1
2006-09-17 12:03:00
·
answer #2
·
answered by Artaeus ✯ 3
·
0⤊
0⤋
From right to left, the first column is ones, then twos, then fours, then eights, etc.
If a 1 is in the column, then you can count the number it represents. If it's a 0, then you can't.
For example, 110 in binary is:
0 in first column [1] = 0
1 in second column [2] = 0 + 2 = 2
1 in third column [4] = 0 + 2 + 4 = 6
So 110 in binary is 6 in decimal.
Now do that for the number that you've got.
2006-09-17 12:03:53
·
answer #3
·
answered by Anonymous
·
0⤊
0⤋
The bit weights are (from the right) 1,2,4,8,16,and 32.
What you have here is:
1+8+16+32 = 57 Decimal
2006-09-17 12:03:15
·
answer #4
·
answered by F. Frederick Skitty 7
·
0⤊
0⤋