answersLogoWhite

0


Best Answer

The long hand method is to sum the powers of 2.

So, 11010111 represents 2^7+2^6+2^4+2^2+2^1+2^0.

This is 215.

Many computers have a built-in calculator with an optional view allowing direct conversion between numbers in different bases.

User Avatar

Wiki User

15y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you Convert binary value of 11010111?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

The octal equivalent of the binary number 11010111 is?

327


What is the binary equivalent of the hexadecimal D plus 7?

D7 = 11010111


What does binary 100000001 plus binary 11010111 equal?

111011000 (decimal 472). The sum is 257+215.


11010111 in binary is what number in decimal?

128 + 64 + 0 + 16 + 0 + 4 + 2 + 1 = 215


How many one are in 215 if you could only use bits?

11010111 is 215 in binary, so there are six ones.


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

sprintf (to, "%d", value)


How is number 8 stated in binary number?

If you mean how do you convert 8 into binary numbers, here it is. 8 -- Eights place value


How do you convert image to binary format?

To convert image to binary, you just have to convert image to binary. Hope this helps.


How do you write a C program to convert a binary value to its octal equivalent?

To convert from binary to octal, bitwise AND the binary value with 0x8 (00000111 in binary) and push the value onto a stack. Right-shift (>>) the binary value by 3 bits and repeat until the binary value is zero. Pop the stack to build the left-to-right digits of the octal value. Using 10110100 as an example: 10110100 & 00000111 = 00000100 10110100 >> 3 = 00010110 00010110 & 00000111 = 00000110 00010110 >> 3 = 00000010 00000010 & 00000111 = 00000010 00000010 >> 3 = 00000000 Popping the values in order reveals 00000010, 00000110 and 00000100 (decimal 2, 6 and 4 respectively). Thus 10110100 binary is 0264 octal.


Convert 186 decimal numbers to its binary equivalent?

Convert 189 to binary number


How do you convert the decimal value 36.625 to binary?

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.


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.