Difficulty: Easy
Correct Answer: High
Explanation:
Introduction / Context:Dynamic RAMs (DRAMs) use control pins such as RAS, CAS, and a write-control pin (often labeled WE or R/W). Knowing the correct polarity of these signals for read versus write is essential when designing memory controllers or debugging bus transactions.
Given Data / Assumptions:
Concept / Approach:
If the write-control input is LOW, the device performs a write when properly addressed. To read, the write function must be disabled, which is achieved by setting WE (or R/W) HIGH so the sense amps drive data out during the CAS phase.
Step-by-Step Solution:
Determine the meaning of WE/RW signal: LOW → write; HIGH → not writing.A read requires not-writing, therefore WE (or R/W) must be HIGH.Thus, during a read cycle the correct level is HIGH.Verification / Alternative check:
Cross-check with standard DRAM timing diagrams: WE = 1 for read, WE = 0 for write, with RAS/CAS sequencing the row and column.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
High
Discussion & Comments