InterviewSolution
Saved Bookmarks
| 1. |
(110011 )2 from decimal to binary |
|
Answer» (110011)2 DECIMAL equivalent = = (1× 2⁵) + (1 × 2⁴) + (0 × 2³) + (0× 2²) + (1 × 2¹) + (1 × 2⁰)= (1 × 32) + (1 × 16) + 0 + 0 + 2 + 1 = 32 + 16 + 2 + 1= 48 + 3= 51 is Decimal |
|