(97) 10____(?) 16 convert this into hexa decimal
Answers
Answer:
(97)10 = (61)16
Explanation:
Decimal to hexadecimal conversion can be achieved by applying the repeated division and remainder algorithm. Simply put, the decimal number is repeatedly divided by the radix 16. In between these divisions, the remainders give the hex equivalent in reverse order.
Here is how to convert decimal to hex step by step:
Step 1: If the given decimal number is less than 16, the hex equivalent is the same. Remembering that the letters A, B, C, D, E and F are used for the values 10, 11, 12, 13, 14 and 15, convert accordingly. For example, the decimal number 15 will be F in hex.
Step 2: If the given decimal number is 16 or greater, divide the number by 16.
Step 3: Write down the remainder.
Step 4: Divide the part before the decimal point of your quotient by 16 again. Write down the remainder.
Step 5: Continue this process of dividing by 16 and noting the remainders until the last decimal digit you are left with is less than 16.
Step 6: When the last decimal digit is less than 16, the quotient will be less than 0 and the remainder will be the digit itself.
Step 7: The last remainder you get will be the most significant digit of your hex value while the first remainder from Step 3 is the least significant digit. Therefore, when you write the remainders in reverse order - starting at the bottom with the most significant digit and going to the top- you will reach the hex value of the given decimal number.