InterviewSolution
Saved Bookmarks
| 1. |
Convert (654)10 to hexadecimal number system |
|
Answer» adecimal equivalent of the GIVEN decimal number (654)₁₀ is (28E)₁₆Conversion is given as follows:Now arrange the remainders OBTAINED from BOTTOM to top:→ (654)₁₀ = (28E)₁₆ (Answer)Divide the number by 16.Write the quotient and remainders obtained. if the remainder is between 9 and 16, REPLACE them with letters from A-F respectively.Repeat the above two process until the quotient becomes 0.Now write the remainders obtained from bottom to top.Result obtained will be the HEXADECIMAL equivalent of the given decimal number. |
|