Difficulty: Easy
Correct Answer: TIME
Explanation:
Introduction / Context:
Time and date stamps control file versioning, backup policies, and audit trails. In DOS environments, simple built-in commands let you view and set the system clock without third-party utilities. Choosing the correct command avoids accidental file operations or system changes.
Given Data / Assumptions:
Concept / Approach:
TIME is an internal command that displays the system time and prompts for a new value if you wish to change it. It works together with DATE for complete timestamp management. Other commands (VER, COPY, FORMAT) serve unrelated purposes and will not show the clock.
Step-by-Step Solution:
Verification / Alternative check:
Create a test file, then run DIR to confirm the timestamp. If you changed the time, the file’s modified time should reflect the new setting, verifying the command’s effect.
Why Other Options Are Wrong:
a: COPY duplicates files; it does not interact with the clock.
b: VER shows DOS version, not time.
d: FORMAT prepares media and should not be used casually; unrelated to time.
e: Not applicable because TIME is correct.
Common Pitfalls:
Entering an invalid time format; forgetting to check DATE, which can also impact logs and backups; assuming modern NTP-like synchronization exists by default in DOS.
Final Answer:
TIME
Discussion & Comments