InterviewSolution
Saved Bookmarks
| 1. |
Convert the following into (111111)2=( )10 |
|
Answer» BINARY to Decimal Given: (111111)₂ = (1 × 2⁵) + (1 × 2⁴) + (1 × 2³) + (1 × 2²) + (1 × 2¹) + (1 × 2⁰) = (63)₁₀ |
|