Open In App

How to Convert 10 in Binary?

Last Updated : 26 Mar, 2024
Improve
Improve
Like Article
Like
Save
Share
Report

To convert 10 into binary form, repeatedly divide 10 by 2 and note the remainder in reverse order.

To convert 10 to binary:

Divide 10 by 2: 10 ÷ 2 = 5 (remainder 0)

Divide 5 by 2: 5 ÷ 2 = 2 (remainder 1)

Divide 2 by 2: 2 ÷ 2 = 1 (remainder 0)

Divide 1 by 2: 1 ÷ 2 = 0 (remainder 1)

Therefore, the binary representation of decimal 10 is 1010.

Hexadecimal to Binary Steps

Divide the decimal number by 2.

Record the remainder (it will be either 0 or 1) as the least significant bit (LSB).

Divide the quotient obtained in step 1 by 2.

Again, record the remainder as the next bit.

Repeat steps 3-4 until the quotient is 0.


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads