InterviewSolution
Saved Bookmarks
| 1. |
Convert (100101)_2 into decimal representation. |
|
Answer» SOLUTION :`1xx2^5+0xx2^4+0xx2^3+1xx2^2+0xx2^1+1xx2^0` =32+0+0+4+0+1=37 |
|