We have a number say 1D7F16 in hexadecimal system, now we have to convert it into decimal equivalent.
First make its Binary.
(1D7F)16 = (1110 101111111)2
(1D7F)16 = (1 ├Ч 16^3) + (13 ├Ч 16^2) + (7 ├Ч 16^1) + (15 ├Ч 16^0)
= (7551)10
Answered :- 2023-09-06 23:29:40
Academy