InterviewSolution
Saved Bookmarks
| 1. |
3. Explain binary to decimal conversion |
|
Answer» Divide the NUMBER by 2. Get the integer quotient for the next iteration. Get the remainder for the BINARY digit. Repeat the STEPS until the quotient is equal to 0. |
|