What is the binary equivalent of decimal value 0.75?

The decimal value 0.75 is equal to 0.11 in binary.

How to do it is as follows:

  1. Multiply the fractional part (0.75) by 2.
  2. Take the integer part of the result as the next binary digit.
  3. Repeat steps 1 and 2 with the fractional part until the fractional part becomes zero or until you reach the desired precision.

Follow these steps:

  1. 0.75 * 2 = 1.50
    • The integer part is 1, so the first binary digit is 1.
    • New fractional part = 0.50
  2. 0.50 * 2 = 1.00
    • The integer part is 1, so the next binary digit is 1.
    • New fractional part = 0.00

Since the fractional part became 0, stop the process. Combining the binary digits obtained: 0.75 in binary is 0.11. So, the decimal value 0.75 is equal to 0.11 in binary.