Ask Question

How do you convert decimal to hexadecimal

+5
Answers (2)
  1. 1 October, 18:20
    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. 1 October, 18:36
    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 & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers