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:
Identify BUFFERS= as a kernel configuration directive.Recall DOS boot order and roles of CONFIG.SYS vs. AUTOEXEC.BAT.Eliminate unrelated filenames.Choose 'Config.sys'.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