

InterviewSolution
Saved Bookmarks
1. |
The number 10101111 in binary system is represented in decimal system by which one of the following numbers?A. 157B. 175C. 571D. 751 |
Answer» Correct Answer - B The number 10101111 cab be rewritten as `10101111=2^(7)xx1+2^(6)xx0+2^(5)xx1+2^(4)xx0+2^(3)xx1+2^(2)xx1+2^(1)xx1+2^(0)xx1` `=128+32+8+4+2+1=175` |
|