InterviewSolution
Saved Bookmarks
| 1. |
What are the rules to convert a Decimal number into a Binary number? |
|
Answer» An easy method of CONVERTING decimal to binary number equivalents is to WRITE down the decimal number and to CONTINUALLY divide-by-2 (TWO) to give a result and a remainder of either a “1” or a “0” until the final result equals zero. |
|