Difficulty: Easy
Correct Answer: 2
Explanation:
Introduction / Context:
Computers represent and process data using the binary numeral system. Understanding the base and place values of binary is foundational for logic design and programming.
Given Data / Assumptions:
Concept / Approach:
In any positional numeral system, each digit position represents a power of the base. Decimal uses base 10 (10^0, 10^1, …). Binary uses base 2, so positions are 2^0, 2^1, 2^2, and so on.
Step-by-Step Solution:
Verification / Alternative check:
Example: 1011₂ = 12^3 + 02^2 + 12^1 + 12^0 = 8 + 0 + 2 + 1 = 11 in decimal.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
2.
Discussion & Comments