Difficulty: Easy
Correct Answer: VER command
Explanation:
Introduction / Context:
Knowing the DOS version helps determine available features, compatible drivers, and memory managers. DOS provides a simple built-in command to display this information without external utilities.
Given Data / Assumptions:
Concept / Approach:
The internal command VER prints the DOS version string. It is a quick diagnostic tool to confirm which DOS release is running and sometimes reports related shell/version details depending on the implementation.
Step-by-Step Solution:
At the C:\> prompt, type VER and press Enter.Observe output such as “MS-DOS Version 6.22”.Use this information when selecting compatible software and drivers.
Verification / Alternative check:
Running HELP or consulting CONFIG.SYS/AUTOEXEC.BAT may also hint at version-specific utilities, but VER is the authoritative quick check.
Why Other Options Are Wrong:
DATE (Option A) changes/displays the date, not OS version.DISK (Option C) is not a standard DOS command for version display.FORMAT (Option D) prepares media and will not reveal version information.
Common Pitfalls:
Final Answer:
VER command
Discussion & Comments