Computer Science, asked by gurshan71, 11 months ago

Convert FACE from Hexadecimal to Decimal​

Answers

Answered by gurukulamdivya
15

Answer:

64310

Explanation:

FACE

F stands for 15 and its binary equivalent is 1111

A stands for 10 and its binary equivalent is 1010

C stands for 12 and its binary equivalent is 1100

E stands for 14 and its binary equivalent is 1110

So Binary equivalent of FACE is 1111-1010-1100-1110

Now we have convert this Binary into decimal

How to convert binary to decimal

The decimal number is equal to the sum of binary digits (dn) times their power of 2(2^n):

=1*32768 + 1*16384 + 1*8296 + 1*4096 +1*2048+ 0*1024 + 1*512 + 0*256 + 1*128 + 1*64 + 0*32 + 0*16 + 1*8 +1*4 + 1*2 + 0*1

= 64310

Similar questions