How do you convert binary to decimal if the binary was 1.01? -


what 1.01 binary in decimal?

just remember use positional numbering system.

1101 = 2^0 + 2^2 + 2^3  =  1 + 4 + 8  =  13 1.01 = 2^0 + 2^(-2)     =  1 + 1/4    =  1.25 

Comments

Popular posts from this blog

javascript - Enclosure Memory Copies -

php - Replacing tags in braces, even nested tags, with regex -