Difficulty: Easy
Correct Answer: Terminate Stay Resident
Explanation:
Introduction / Context:
TSR programs were a hallmark of DOS environments. They allowed small utilities (such as pop-up calculators, key enhancers, or clipboard tools) to remain in memory after execution and be invoked later via hotkeys, despite DOS being a single-tasking OS.
Given Data / Assumptions:
Concept / Approach:
TSR stands for 'Terminate and Stay Resident' (commonly written without 'and' in informal abbreviations), meaning the program terminates normally to DOS but leaves a portion resident in RAM, ready to resume service when triggered. This provided pseudo-multitasking for simple utilities without a full multitasking kernel.
Step-by-Step Solution:
Verification / Alternative check:
DOS development references and interrupt lists document TSR mechanics and memory footprints extensively, using the phrase 'Terminate and Stay Resident'.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
Terminate Stay Resident.
Discussion & Comments