Computer Science
Convert the following hexadecimal number to decimal number:
(ABC)16
Number System
53 Likes
Answer
Hexadecimal Number | Power | Value | Result |
---|---|---|---|
C (12) | 160 | 1 | 12x1=12 |
B (11) | 161 | 16 | 11x16=176 |
A (10) | 162 | 256 | 10x256=2560 |
Equivalent decimal number = 12 + 176 + 2560 = 2748
Therefore, (ABC)16 = (2748)10
Answered By
22 Likes