Decimal To Binary Converter

10
2

Decimal to binary calcution steps:


How to convert a decimal number to the binary number?

Converting decimal to binary is super easy. As we are converting decimal to binary, we have to divide the number by 2 and every times we need to keep the remainder in reverse order.You must remember if it is a fractional number that will in different method. An example given below how to convert a fractional decimal number to binary number:

Decimal to Binary Conversion.

Example of decimal to binary conversion:

(10.25)10 = (?)2

For 10:

Divided by 2 Quotient Remainder Flow
10 / 2 5 0
5 / 2 2 1
2 / 2 1 0
1 / 2 0 1

For .25:

Multiply by 2 Result Non-Fractional Part Flow
.25 * 2 0.50 0
.50 * 2 1.00 1

Result is = (1010.01)2


Decimal to binary conversion table:

Decimal Binary
0 0
1 1
2 10
311
4100
5101
6110
7111
81000
91001
101010
111011
121100
131101
141110
151111