Difficulty: Easy
Correct Answer: MODE CO40
Explanation:
Introduction / Context:
Early DOS systems allowed users to change the text mode characteristics of the display adapter from the command line. Color adapters could be configured for 40 or 80 columns, which influenced readability on televisions and early monitors. Knowing the precise syntax of the MODE command is essential for correctly setting the screen layout.
Given Data / Assumptions:
Concept / Approach:
The MODE utility accepts parameters that select display width and color capabilities. The token "CO" denotes a color mode, and the numeric suffix indicates the column count. Thus, "MODE CO40" sets the adapter to a 40-column color configuration. Other strings such as "MODE COLOUR" or symbolic verbs like "MODE CHANGE" are not valid DOS syntax for this purpose, and switches like "/C" are unrelated to text-width configuration in classic DOS.
Step-by-Step Solution:
Verification / Alternative check:
Run MODE without arguments to display current settings, then toggle to MODE CO40 and again to MODE CO80 to confirm that the width and color settings are changing as expected.
Why Other Options Are Wrong:
Common Pitfalls:
Assuming every DOS version supports identical MODE arguments, ignoring that some shells echo minimal feedback after a mode change, and confusing color enablement with palette control, which is separate.
Final Answer:
MODE CO40
Discussion & Comments