Monday 4 July 2011

How to convert Decimal number to its equvalent binary number


The most easy way to convert decimal to its binary equivalent is to by dividing the decimal number by 2 progressively.The process of dividing must be continued until we get zero(0) as quotient.Then the binery number is obtained by taking the reminders.
EXAMPLE:
(53)10=(?)2

53/2=26reminder 1
26/2=13 reminder 0
13/2=6 reminder 1
6/2=3 reminder 0
3/2=1 reminder 1
1/2=0 reminder 1
so the answer is (110101)2

Enter value to convert


Answer = 




No comments:

Post a Comment