Difficulty: Easy
Correct Answer: Config.sys
Explanation:
Introduction / Context:
DOS boots using two key configuration files: CONFIG.SYS and AUTOEXEC.BAT. Understanding which settings belong in which file is vital for legacy system setup, driver loading, and performance tuning (e.g., disk buffers and device drivers).
Given Data / Assumptions:
Concept / Approach:
System-level settings and device drivers (HIMEM.SYS, EMM386.EXE, BUFFERS=, FILES=) reside in CONFIG.SYS. AUTOEXEC.BAT typically sets environment variables and launches TSRs/utilities. Therefore, BUFFERS= belongs in CONFIG.SYS.
Step-by-Step Solution:
Verification / Alternative check:
DOS manuals list BUFFERS= under CONFIG.SYS directives alongside FILES= and LASTDRIVE=.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
Config.sys.
Discussion & Comments