answersLogoWhite

0

Converting from binary to decimal is relatively straightforward.

examine the first octet : 11000001

each '1' has a value depending on its position;

128 64 32 16 8 4 2 1

1 1 0 0 0 0 0 1

128 + 64 + 1 = 193

lets try the second octet

128 64 32 16 8 4 2 1

0 0 0 0 1 0 1 0

8 + 2 = 10

so 11000001.00001010.00011110.00000010 becomes

193.10.30.2

you can also use the windows calculator to perform the conversion.

select 'scientific' from the view menu in calculator, select 'bin'

Copy and paste the binary number into calc, select 'dec'

User Avatar

Wiki User

16y ago

What else can I help you with?