Difficulty: Easy
Correct Answer: 256 locations in memory
Explanation:
Introduction / Context:
Address lines select locations in memory using binary codes. The number of unique addresses depends on the number of address bits. This is a foundational calculation in digital design and computer architecture.
Given Data / Assumptions:
Concept / Approach:
The number of unique codes represented by n bits is 2^n. Therefore, an 8-bit address field can address 2^8 locations. This relationship scales directly (e.g., 16 bits → 2^16 locations, etc.).
Step-by-Step Solution:
Verification / Alternative check:
Check extremes: with 1 bit you can select 2 locations; doubling bits squares capacity. 8 bits yielding 256 is consistent with this rule.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
256 locations in memory
Discussion & Comments