Computer Science - Computer Fundamentals - Discussion

Discussion Forum : Computer Fundamentals - Section 17 (Q.No. 6)
6.
Conversion of an octal number 208 to its binary number is
100002
101112
101102
111102
None of the above
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
5 comments Page 1 of 1.

Renjith said:   1 decade ago
20 to base 8 means 16 to base 10
i.e. 2 0
2 x 8 raise to 1 + 0 x 8 raise to 0 = 16.

Now 16 base to 10 means 10000 base to 2

i.e. 16/2 = 8 remainder 0
8/2 = 4 remainder 0
4/2 = 2 remainder 0
2/2 = 1 remainder 0
So the answer is 1 0 0 0 0 (the last answer and the remainders, from bottom to top)

Hope it is clear.!!

Sonali said:   1 decade ago
20 to base 8 convert into decimals as 0*8^0+2*8^1 = 0+16 = 16.

From decimal convert to binary,

i.e. 16/2 = 8 remainder 0.
8/2 = 4 remainder 0.
4/2 = 2 remainder 0.
2/2 = 1 remainder 0.

So the answer is 1 0 0 0 0 (the last answer and the remainders, from bottom to top).

Ravi said:   1 decade ago
Binary for 0 is 000.

Binary for 2 is 010.

So, binary for 20 is 010000.

Basically we not consider the left zero for 1.

Seema said:   1 decade ago
How to calculate this answer ?

Priyanka said:   1 decade ago
Please explain the answer.

Post your comments here:

Your comments will be displayed after verification.