Question

In: Computer Science

1. Give the binary equivalent of the decimal number of 11.77 (assume fixed point, no more...

1. Give the binary equivalent of the decimal number of 11.77 (assume fixed point, no more than 6 bits left and right of the decimal point)

Solutions

Expert Solution

1011.110001

Explanation:
-------------
Converting 11.77 to binary
Convert decimal part first, then the fractional part
> First convert 11 to binary
Divide 11 successively by 2 until the quotient is 0
   > 11/2 = 5, remainder is 1
   > 5/2 = 2, remainder is 1
   > 2/2 = 1, remainder is 0
   > 1/2 = 0, remainder is 1
Read remainders from the bottom to top as 1011
So, 11 of decimal is 1011 in binary
> Now, Convert 0.77000000 to binary
   > Multiply 0.77000000 with 2. Since 1.54000000 is >= 1. then add 1 to result
   > Multiply 0.54000000 with 2. Since 1.08000000 is >= 1. then add 1 to result
   > Multiply 0.08000000 with 2. Since 0.16000000 is < 1. then add 0 to result
   > Multiply 0.16000000 with 2. Since 0.32000000 is < 1. then add 0 to result
   > Multiply 0.32000000 with 2. Since 0.64000000 is < 1. then add 0 to result
   > Multiply 0.64000000 with 2. Since 1.28000000 is >= 1. then add 1 to result
0.77 of decimal is .110001 in binary
so, 11.77 in binary is 1011.110001
Answer: 1011.110001

Related Solutions

Give the binary equivalent of the decimal number of 11.77 (assume fixed point, no more than...
Give the binary equivalent of the decimal number of 11.77 (assume fixed point, no more than 6 bits left and right of the decimal point)
Give the binary equivalent of the decimal number of 19.9 (assume fixed point, no more than...
Give the binary equivalent of the decimal number of 19.9 (assume fixed point, no more than 6 bits left and right of the decimal point(show work)
The number –11.375 (decimal) represented as a 32-bit floating-point binary number according to the IEEE 754...
The number –11.375 (decimal) represented as a 32-bit floating-point binary number according to the IEEE 754 standard is
Write an application that prints a table of the binary and octal equivalent of the decimal...
Write an application that prints a table of the binary and octal equivalent of the decimal numbers in the range 1 through 256. **Write in JAVA**
Problem: Convert the following binary number to decimal. 1. 110101.101 Problem: Convert the following decimal number...
Problem: Convert the following binary number to decimal. 1. 110101.101 Problem: Convert the following decimal number to fractional binary representation. 1. 103.5625
Convert the decimal number, 315.56 into binary form?
Convert the decimal number, 315.56 into binary form?
1.Write a Java program that inputs a binary number and displays the same number in decimal....
1.Write a Java program that inputs a binary number and displays the same number in decimal. 2.Write Java program that inputs a decimal number and displays the same number in binary.
represent the decimal number 101 and 6 as floating point binary numbers please show your work...
represent the decimal number 101 and 6 as floating point binary numbers please show your work and explained, I have a test.
write a VBA code to convert an arbitrary positive binary fractional number (0< number<1) to equivalent...
write a VBA code to convert an arbitrary positive binary fractional number (0< number<1) to equivalent decimal number. the code should acquire the binary fraction number in the format"0.xxxxxx"from input box, then return the equivalent decimal number in a message box. in the code, you may need to use VBA function "mid(_,_,_)" to pick up a specific symbols or characters from a string. you can use below conversion as benchmark to verify and debug your code: (0.1011)2 = (0.6875)10   
Convert the following binary number to dotted decimal format. 11000000100110010000100101011001
Convert the following binary number to dotted decimal format. 11000000100110010000100101011001
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT