How to convert Decimal to Binary

Here are the steps to convert decimal number into binary : –

  1. Divide the given number by 2.
  2. Get the integer quotient for the next iteration as seen in below table
  3. Get the remainder for the binary digit.
  4. Repeat the steps until the quotient is equal to 0. Now the output is Remainder in reverse order

Convert 410 to binary:

Divide by 2QuotientRemainderBit / count
4/2200
2/2101
1/2012
So 410 = 1002

You can try out self
Here are list of some binary numbers –

DecimalBinary
00
11
210
311
4100
5101
6110
7111
81000
91001
101010

Leave a Comment

Your email address will not be published. Required fields are marked *