Difficulty: Easy
Correct Answer: the EEPROM can erase and reprogram individual words without removal from the circuit
Explanation:
Introduction / Context:Both EPROM and EEPROM are nonvolatile memories, but their erase and program mechanisms differ substantially. Understanding these differences helps in selecting a memory for firmware updates, calibration storage, and field serviceability.
Given Data / Assumptions:
Concept / Approach:EEPROM allows electrically erasing and programming at fine granularity (often byte/word) while the device remains soldered in-circuit. EPROM requires removal and exposure to UV, with bulk erasure (all contents) before reprogramming, which is inconvenient in-field. Therefore, the combined benefit—electrical erase/program at word/byte level without removal—captures EEPROM's major advantages.
Step-by-Step Solution:
Identify erase method: UV for EPROM vs electrical for EEPROM.Assess granularity: EPROM bulk vs EEPROM word/byte level.Assess serviceability: EEPROM can be updated in-circuit—no removal required.Verification / Alternative check:Datasheets specify erase times: EPROM requires minutes under UV; EEPROM writes and erases electrically in milliseconds without removal, often through I2C/SPI interfaces.
Why Other Options Are Wrong:
Common Pitfalls:Confusing EEPROM with Flash; although both are electrically erasable, Flash often erases in blocks/sectors, not individual bytes/words (device dependent).
Final Answer:the EEPROM can erase and reprogram individual words without removal from the circuit
Discussion & Comments