

InterviewSolution
Saved Bookmarks
1. |
Convert the binary equivalent 10101 to its decimal equivalent.(a) 21(b) 12(c) 22(d) 31I had been asked this question during an online exam.My query is from The Binary Number System topic in section Number Systems of Computer Fundamentals |
Answer» CORRECT answer is (a) 21 To explain: To CONVERT a binary number to its decimal EQUIVALENT FOLLOW these steps : 2^4 * 1+ 2^3 * 0 + 2^2 *1 + 2^1 * 0 + 2^0 * 1 = 21. Therefore, the answer is 21. |
|