Ask Question
16 May, 06:40

How do you convert decimal to hexadecimal

+4
Answers (2)
  1. 16 May, 08:16
    0
    Divide the decimal number by 16. Treat the division as an integer division. Write down the remainder (in hexadecimal).

    Divide the result again by 16. Treat the division as an integer division.

    Repeat step 2 and 3 until result is 0.

    The hex value is the digit sequence of the remainders from the last to first.
  2. 16 May, 09:22
    0
    Decimal to hexadecimal conversion is done through division.

    Divide the decimal number by 16

    Record the result and the remainder.

    Stop the division when you have the result = 0

    Now the remainders are what you need.

    Write them out from bottom to top.

    In a situation where you have "10,11,12,13,14 or 15" as remainders, replace them with hexadecimal alphabets (A, B, C, D, E, F)
Know the Answer?
Not Sure About the Answer?
Find an answer to your question ✅ “How do you convert decimal to hexadecimal ...” in 📘 Computers and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers