Difficulty: Easy
Correct Answer: reduced pin count and decrease in package size
Explanation:
Introduction / Context:
Most DRAMs use multiplexed addressing: the row address is presented first (latched by RAS), followed by the column address (latched by CAS). This technique enables large arrays with fewer external pins, which impacts cost and board routing complexity.
Given Data / Assumptions:
Concept / Approach:
Without multiplexing, a 16-bit address would require 16 dedicated pins. With multiplexing, only 8 address pins are needed (plus RAS/CAS control), cutting the pin count roughly in half for the same address width. This directly reduces package size and cost, and simplifies routing.
Step-by-Step Solution:
Verification / Alternative check:
DRAM datasheets list address pins as A0–Ax with RAS/CAS timing to latch row then column; SRAMs typically use non-multiplexed addresses and therefore more pins for comparable depth.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
reduced pin count and decrease in package size
Discussion & Comments