Digital Electronics - Number Systems and Codes - Discussion

Discussion Forum : Number Systems and Codes - General Questions (Q.No. 5)
5.
Convert the binary number 1001.00102 to decimal.
90.125
9.125
125
12.5
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
18 comments Page 1 of 2.

Vishnu said:   9 years ago
1001.0010 (base 2) is given. it should be converted into decimal (base 10).

Step1: From before the decimal point, start multiplying the bit '1' (as per the given question) with 2^0.

Step2: Similarly multiply each digit, moving towards left with 2^1 , 2^2,......... (positive powers) and add them all.

Step 3: Similarly multiply each digit, moving towards right with 2^(-1) , 2^(-2)......... (negative powers) and add them all.

Here: 1 * 2^(3) + 0 * 2^(2) + 0 * 2^(1) + 1 * 2^(0) . 0 * 2^(-1) + 0 * 2^(-2) + 1 * 2^(-3) + 0 * 2^(-4) = 9.125 (as 2^(-3) = 1/ 2^(3) = 1/8 = 0.125).
(5)

Azharuddin Saifi said:   8 years ago
1001.0010.

1001 = 1*2^3 + 0*2^2 + 0*2^1 + 1*2^0 = 8 + 0 + 0 + 1 = 9
.0010 = 0*2^-1 + 0*2^-2 + 1*2^-3 + 0*2^-4 = 0 + 0 + (-8) + 0 = -8 = 1/8 = 0.25.
9.25 ans.
(5)

K.Ramalakshmi said:   10 years ago
You gave this value 1001-9, but 0010-2 why not taking this value?

Please explain briefly. I can't understand you are gave to answer.

Trolololo said:   9 years ago
After decimal the divide by 2 law doesn't work you have to switch to power they keep increasing from the decimal point as bin*2^pos.

Amruta Rohit said:   8 years ago
1001.0010 = (1*2^3)+(0*2^2)+(0*2^1)+(1*2^0)+(0*2^-1)+(0*2^-2)+(1*2^-3)+(0*2^-4) = 9.125.
(4)

K.Ramalakshmi said:   10 years ago
1001-9 but 0010-2 why not taking? Please explain. I can't understand 1001.0010-9.125.

Abdul Hamid said:   1 decade ago
I did get this answer how do you get the 9.125 please I want to know thank you?

Mahesh said:   1 decade ago
1001 = 9 after,

.0010 = 0+0+1/8+0 = 0.125.

Now,

1001.0010 = 9.125.

Arzoo said:   8 years ago
Can't understand the logic of the question. Please explain it for me.

Ramya said:   9 years ago
Really I can't understand this, please explain easily.


Post your comments here:

Your comments will be displayed after verification.