5

Click here to load reader

Binary to Decimal Conversion

Embed Size (px)

DESCRIPTION

This slide give the fundamental idea of conversion between Binary Number to Decimal Number.

Citation preview

Page 1: Binary to Decimal Conversion

CONVERT BINARY TO DECIMAL

Page 2: Binary to Decimal Conversion

(1111011)2=(?)10

Page 3: Binary to Decimal Conversion

First count right to left of the binary

number

(1111011)2

0123456

Page 4: Binary to Decimal Conversion

(1 1 1 1 0 1 1)2

0123456

Take the first number

1

1

Multiply by 2.

X 26

Write the power of the 2 with 1’s position

6

+ 1 X 2 + 1 X 2 + 1 X 2 + 0 X 2 + 1 X 2 + 1 X 25 4 3 2 1 0

Continue the above step until end.

Calculate the total.123

Page 5: Binary to Decimal Conversion

(1111011)2=(123)10

SO