InterviewSolution
Saved Bookmarks
| 1. |
Name a method to convert decimal numbers to binary |
|
Answer» ong>ANSWER: The most popular way to convert a decimal number into the binary is the double dabble method. In this method, the given decimal number is PROGRESSIVELY divided by 2 and writing the REMAINDER after each division. When all the remainder is read in reverse ORDER, the binary number is obtained. |
|