how to use hexadecimal number system and convert them to decimal numbers
Answers
Answered by
0
See in computer book
Answered by
0
Hexadecimal number system consists of 16 digits
0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F
To convert it to decimal number system you have to multiply the numbers using the powers otheir bases.
For example: Take 15AF.
To convert it to decimal number system:
=F*16^0 + A*16^1 + 5*16^2 + 1*16^3
=15*1 + 10*16 + 5*256 + 1*4096
=5551
Hope it helps :)
Similar questions