Computer Science, asked by sangitatiwari69913, 3 months ago

Convert binary numbers into decimal.​

Answers

Answered by PrincessTeja
1

Answer:

The decimal number is equal to the sum of binary digits (dn) times their power of 2 (2n): decimal = d0×20 + d1×21 + d2×22 + ...

Answered by SGS126
5

Answer:

For binary number with n digits:

dn-1 ... d3 d2 d1 d0

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

decimal = d0×20 + d1×21 + d2×22 + ...

Example

Find the decimal value of 1110012:

binary number: 1 1 1 0 0 1

power of 2: 25 24 23 22 21 20

1110012 = 1⋅25+1⋅24+1⋅23+0⋅22+0⋅21+1⋅20 = 571

Explanation:

HOPE IT HELPS UH!

MARK AS BRAINLIEST!

Similar questions