

InterviewSolution
Saved Bookmarks
1. |
Convert :(110)2 = ( __ )10.(a) 4(b) 5(c) 6(d) 9I have been asked this question in unit test.The origin of the question is The Decimal Number System in section Number Systems of Computer Fundamentals |
Answer» RIGHT ANSWER is (c) 6 The best explanation: The base 2 represents that the number is binary ,whereas, the base 10 represents that it is to be CONVERTED to the decimal format. Conversion:2^2 * 1 + 2^1 * 1 + 2^0 *0 = 6. |
|