Computer Science, asked by avijitmandal1971, 13 days ago

convert hexadecimal to decimal ( F7D)16=(?)10 show the process​

Answers

Answered by ItsJeonJungkookARMY
37

Answer:

Hex is a base 16 number and decimal is a base 10 number. We need to know the decimal equivalent of every hex number digit. See below of the page to check the hex to decimal chart.

Here are the steps to convert hex to decimal:

Get the decimal equivalent of hex from table.

Multiply every digit with 16 power of digit location.

(zero based, 7DE: E location is 0, D location is 1 and the 7 location is 2)

Sum all the multipliers.

Here is an example:

7DE is a hex number 7DE = (7 * 162) + (13 * 161) + (14 * 160) 7DE = (7 * 256) + (13 * 16) + (14 * 1) 7DE = 1792 + 208 + 14 7DE = 2014 (in decimal number)

Similar questions