Convert binary numbers (base-2) to decimal numbers (base-10) with step-by-step explanations
Write down the binary number
Assign powers of 2 to each digit, starting from the right (2⁰, 2¹, 2², ...)
Multiply each binary digit by its corresponding power of 2
Add up all the products to get the decimal equivalent
1×2³ + 0×2² + 1×2¹ + 1×2⁰
= 8 + 0 + 2 + 1
= 11₁₀
                        English