answersLogoWhite

0


Best Answer

To convert decimal to binary, divide the decimal number you want to convert by 2 and write down the remainder. Repeat this until the final result is zero. The remainders you wrote down, written from the last one you wrote to the first (so the opposite order from which you derived them) is the binary equivalent.

So using this method with the number 23 we get:

23/2 = 11 remainder 1

11/2 = 5 remainder 1

5/2 = 2 remainder 1

2/2 = 1 remainder 0

1/2 = 0 remainder 1

So the binary equivalent is 10111

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the binary equivalent of the decimal number 23?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Which one of the following represent the binary equivalent of the decimal number 23?

The binary equivalent for the decimal number 23 is 10111


What is the decimal equivalent of the binary number 10111?

23


Which is the following represents the binary equivalent of the decimal number 23?

The binary equivalent of the decimal number 23 is 10111. You can use an online converter to easily find this solution.


What represent the binary equivalent of the decimal number 23?

10111


What is 23 in binary?

The decimal number 23 corresponds to the binary number 10111.


What is a decimal equivalent of 10111?

If that's binary, it's 23 base 10.


How do you write 23 binary?

Decimal 23 is 10111 in binary


What is the decimal equivalent of this binary number 111101?

111101 to decimal = 25 + 24 + 23 + 22 + 01 + 20 = 32 + 16 + 8 + 4 + 0 + 1 = 61


What is the decimal equivalent of the binary number 101011?

25 + 23 + 21 + 20 = 32 +8 +2+1 = 43


What is 10111 from binary to decimal?

23


What is the decimal number 23 as a binary number?

The number 23 is 10111 in binary. The digits in a binary number are exponents of 2 rather than 10, so that for a five digit number in binary, the digit places represent 16, 8, 4, 2, 1 instead of increasing values of 10. 10111 = 16+0+4+2+1 = 23


What is the number 27 as a binary number?

The decimal number "27" is written in binary as 11011.This is because binary has a base of 2. This means that the digits are representing multiples of powers of 2 (as opposed to 10 in decimal). This number in binary means (1 * 20) + (1 * 21) + (0 * 22) + (1 * 23) + (1 * 24). In decimal this equals 1 + 2 + 0 + 8 + 16. This, of course, equals 27.