Computer Science, asked by shaurya2856, 5 months ago

How do you convert a binary number into a decimal number? Describe.​

Answers

Answered by memanan03
11

A binary number is converted into a decimal number by multiplying each binary digit by 2 raised to power respective values.

For example,

1110

(0 × 2⁰) + (1 × 2¹) + (1 × 2²) + (1 × 2³)

= 0 + 2 + 4 + 8

= 14

Therefore Decimal Number of 1110 is 14.

The simple way is multiplying 1, 2, 4, 8, 16, 32 ... to the respective digits in order.

Answered by mishrapratikboss01
1

Answer:

by multiplying each binary digit by 2 raised to power respective values.

Explanation:

A binary number is converted into a decimal number by multiplying each binary digit by 2 raised to power respective values. Therefore Decimal Number of 1110 is 14. The simple way is multiplying 1, 2, 4, 8, 16, 32 ... to the respective digits in order.

Similar questions