Binary: 0001 010 100 0 00 010 Write down what it does in plain English. Please help?

Answers (1)

"Binary: 0001 010 100 0 00 010". This looks rather messy. To structure the presentation of long binaries, it is good practice to write them in 'nibbles', groups of four digits:

b0001 0101 0000 0010 = 2^12 + 2^10 + 2^8 + 2^1 = 4096+1024+256+2= d5378

In hexadecimal, the human readable form of binary, one digit represents one nibble:

h1502 = 1*16^3 + 5*16^2 + 2*16^0 = d5378 in decimal.

Votes: +0 / -0