Computer Science
Convert the following hexadecimal number to decimal number:
(CD7)16
Number System
39 Likes
Answer
Hexadecimal Number | Power | Value | Result |
---|---|---|---|
7 | 160 | 1 | 7x1=7 |
D (13) | 161 | 16 | 13x16=208 |
C (12) | 162 | 256 | 12x256=3072 |
Equivalent decimal number = 7 + 208 + 3072 = 3287
Therefore, (CD7)16 = (3287)10
Answered By
18 Likes