Difficulty: Easy
Correct Answer: Intermediate storage
Explanation:
Introduction / Context:
During data processing, systems often stage information between steps so that subsequent operations can proceed efficiently. This staging can occur in memory buffers, scratch files, or queues. The general term for this role is requested here.
Given Data / Assumptions:
Concept / Approach:
Intermediate storage refers to temporary holding areas such as buffers, caches, spooling files, and scratch spaces. It is distinct from permanent storage (disks for long-term) and from the CPU (which executes instructions).
Step-by-Step Solution:
Verification / Alternative check:
Examples include print spooling (disk-based intermediate storage) and message queues between microservices, each temporarily holding data until the next stage consumes it.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
Intermediate storage.
Discussion & Comments