answersLogoWhite

0


Best Answer

36.62510 = 100100.1012

Multiply 36.625 by 2 until it is an integer, giving 293. This requires 3 multiplies. Convert 293 to binary, giving 100100101. Shift right 3 binary places (balancing the 3 multiplies), giving 100100.101.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you convert the decimal value 36.625 to binary?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you convert a binary number into a decimal in C?

sprintf (to, "%d", value)


Express the decimal number 57 in binary?

The binary value of the decimal number 57 (fifty seven) is 00111001According to three different decimal to binary converters I tried, the decimal number 57 is expressed in binary as 111001. Being able to convert to binary is important because binary is what computers work in.


What is the decimal value of 181 in binary?

Decimal 181 in binary is 10110101


What is decimal value of binary number 100?

Binary 100 is 4 in decimal.


What is the decimal value of the binary number 1001?

1001 in binary is equal to 9 in decimal.


What are the binary and decimal values of the ASCII letter g?

Binary- 01100111 Decimal Value- 103


What is the binary number of the decimal value 181?

The binary values is 10110101.


What is the decimal value of binary 10011?

19


What is the value of a binary number of 101?

Binary(101) = Decimal(5).


What is binary value for 192?

The binary equivalent of the decimal number 192 is 11000000.


Why are these octal codes used instead of decimal system?

Octal codes are often used to write the numerical value of a binary number because it is easier to convert from binary to octal, instead of binary to decimal. You can convert to octal on sight, and it simply requires grouping the binary bits into groups of three, whereas converting to decimal requires repeated division by 10102 or 1010. Actually, grouping into three bits is the same as dividing by 1002 or 810 so the process is really the same. Divide by 8 to get octal. Divide by 10 to get decimal.


How do you convert binary decimal values into hexadecimal value?

"Binary decimal" is a contradiction in terms. Decimal has a base of 10, binary a base of 2 and hexadecimal a base of 16.The way I would do it is:If you have a value in binary then convert this to a decimal value. Then convert it to hexadecimal remembering that the number will now be comprised by the following (where x represents the digit):The first digit (from right to left) will equal x * 160, the next will equal x * 161 and so forth...An example:So in binary 11111 = (1 * 20) + (1 * 21) + (1 * 22) + (1 * 23) + (1 * 24) = 1 + 2 + 4 + 8 + 16 = 31 (in decimal).To write this in hexadecimal, 31 would be (15 * 160) + (1 * 161) = 1FNote: A tip - If you are using a Windows operating system, then if you go to the Start menu and choose search/run and type in "calc" or "calculator" then you will get a virtual calculator to use. If you choose "programmer" from the View menu and then choose the "Bin" button and type in a binary value and then choose the "Hex" button then the binary value will be converted to hexadecimal. (The above certainly applies for Windows 7).