About 83 results
Open links in new tab
  1. How to convert decimal with fraction to a binary

    Aug 27, 2019 · Multiply by ten, look at the integer part, convert that to decimal. Remove the integer part, then multiply by ten again. Rinse and repeat. Multiplying by ten in binary isn't as …

  2. Why do we divide or multiply by 2 when converting binary?

    May 2, 2015 · Trying to understand the fundamentals of binary rather than just following steps, I wanted to know why do we multiply by 2 to convert a decimal (0.5, 0.25) to a binary and why …

  3. How would I convert a long decimal to binary without using a …

    3 You can convert to a different power-of-two base, e.g. octal or hexadecimal, first. That's $3$ or $4$ times fewer divisions, and then you can very quickly convert to binary using a lookup table …

  4. How to convert decimal with scientefic notation, to binary?

    How to convert decimal with scientefic notation, to binary? Ask Question Asked 9 years, 10 months ago Modified 5 years, 6 months ago

  5. A function for decimal to binary conversion

    Aug 7, 2015 · I want to convert a decimal (base 10) number to its binary (base 10) equivalent. The binary string has to be of infinite length. Is any of the following functions correct for non …

  6. arithmetic - Converting decimal (base 10) numbers to binary by ...

    24 A friend of mine had a homework assignment where he needed to convert decimal (base 10) numbers to binary. I helped him out and explained one of the ways I was taught to do this. The …

  7. PowerShell script binary-decimal-hexadecimal-ipv4 convertor

    May 11, 2021 · The codes to convert binary, hexadecimal and ipv4 are similar, I wonder if I can use one script block to achieve the conversion processes and use a parameter to determine …

  8. Why does the method of converting from decimal binary by taking ...

    Oct 9, 2017 · The easiest-to-understand way of converting from decimal to binary is, first find the largest power of 2 that is smaller than 100. And substract that power of 2 from 100.

  9. Decimal to Binary in Rust - Code Review Stack Exchange

    Jan 6, 2019 · The point of a to_binary function is pretty much always because you for some reason want a textual representation in binary. As a quick side note, Rust already has the …

  10. Finding the mantissa from binary with floating point numbers?

    Oct 17, 2015 · I know each mantissa has to have a 1 before the decimal, but I'm unsure where the .75 came from. 1100000000000000000000 isn't 75 in decimal I mean right? How do I …