Convert the given hexadecimal number into decimal system.
a) (5C8)16
Answers
Answered by
19
Answer:
Step by step solution
- Step 1: Write down the hexadecimal number: (5C8)16
- Step 1: Write down the hexadecimal number: (5C8)16Step 2: Show each digit place as an increasing power of 16: 5x162 + Cx161 + 8x160
- Step 1: Write down the hexadecimal number: (5C8)16Step 2: Show each digit place as an increasing power of 16: 5x162 + Cx161 + 8x160Step 3: Convert each hexadecimal digits values to decimal values then perform the math: 5x256 + 12x16 + 8x1 = (1480)10
Answered by
4
This is simple algorithm where you have to multiply positional value of binary with their digit and get the sum of these steps.
Example-1 − Convert hexadecimal number ABCDEF into decimal number. = (10485760+720896+49152+3328+224+15)10 = (11259375)10 which is answer
Similar questions