Digital Electronics - Number Systems and Codes - Discussion

Discussion Forum : Number Systems and Codes - General Questions (Q.No. 25)
25.
Convert the following binary number to octal.
0011010112
1538
3518
2538
3528
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
2 comments Page 1 of 1.

Aparna said:   9 years ago
001 = 1 * 2^0 + 0 * 2^1 + 1 * 2^2 = 1 + 0 + 0 = 1.
101 = 1 * 2^0 + 0 * 2^1 + 1 * 2^2 = 1 + 0 + 4 = 5.
011 = 1 * 2^0 + 1 * 2^1 + 1 * 2^2 = 1 + 2 + 0 = 3(since 2^0 = 1).

Ashit said:   1 decade ago
001 101 011
1 5 3

Post your comments here:

Your comments will be displayed after verification.