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?

Related Questions

Convert the following decimal values to binary values 118?

0111 0110


Convert the following decimal numbers into their equivalent binary numbers and then convert the resulting binary numbers back into the decimal numbers a. 6401 b. 1010110?

a) 6401 in Binary is 1100100000001b) 1010110 in decimal is 86


Convert the following percent into a decimal 0.0235 percent?

0.0235% = 0.0235/100 = 0.000235


How do you convert 3.5 into a decimal?

You cannot convert a decimal into a decimal!


What is the decimal expansions of the following fraction 110?

110 is an integer: there is not a sensible way to convert it to a fraction.


How do you convert to a decimal 0.2?

0.2 already is a decimal. There is nothing to convert.0.2 already is a decimal. There is nothing to convert.0.2 already is a decimal. There is nothing to convert.0.2 already is a decimal. There is nothing to convert.


How do you convert 29.53 to a decimal?

Convert 29.53 to decimal


What is the dotted decimal representation of the IPv4 address 11001011.00000000.01110001.11010011?

The dotted decimal representation of the IPv4 address 11001011.00000000.01110001.11010011 is obtained by converting each octet from binary to decimal. The binary octets convert as follows: 11001011 is 203, 00000000 is 0, 01110001 is 113, and 11010011 is 211. Therefore, the IPv4 address in dotted decimal format is 203.0.113.211.


Write the following decimal as a percent 625?

To convert 625 to percent multiply by 100: 625 × 100 = 62,500%


Do you divide by 100 to convert a decimal to a percent?

No because it is multiplied by a 100 as in the following example: 0.25*100 = 25%


Convert the following decimal number to binary number1477128223255?

It is10101 011111 101011 101100 111111 101000 010111


What are the procedure involved in calculating ip address?

The standard written format for an IP address is as 4 bytes written as their decimal values separated by periods. Just convert each decimal value to a binary byte and append them to make a 32 bit number. Reverse that to convert a 32 bit number to 4 decimal bytes separated by periods.