Difficulty: Easy
Correct Answer: CONFIG.SYS
Explanation:
Introduction / Context:
Legacy DOS systems relied on two primary boot-time files for configuration: CONFIG.SYS and AUTOEXEC.BAT. Distinguishing which directives go where is a common certification and troubleshooting topic for retrocomputing and embedded DOS deployments.
Given Data / Assumptions:
Concept / Approach:
CONFIG.SYS contains directives processed by the DOS kernel during initialization (e.g., DEVICE, FILES, BUFFERS, DOS=HIGH, LASTDRIVE). AUTOEXEC.BAT runs after DOS loads, executing commands like PATH, SET, and TSR loading. Since BUFFERS tunes a kernel file I/O parameter, it belongs in CONFIG.SYS.
Step-by-Step Solution:
Verification / Alternative check:
DOS manuals list BUFFERS=n under CONFIG.SYS examples alongside FILES=n and DEVICE=HIMEM.SYS lines. AUTOEXEC.BAT contains command-line executables, not kernel configuration keywords.
Why Other Options Are Wrong:
Common Pitfalls:
Placing BUFFERS in AUTOEXEC.BAT (ignored) or assuming modern OS concepts apply to DOS initialization. Always separate kernel config (CONFIG.SYS) from runtime commands (AUTOEXEC.BAT).
Final Answer:
CONFIG.SYS
Discussion & Comments