Which of the following is a multitasking operating system? MCQ with Answer and Explanation

Which of the following is a multitasking operating system?
A. MS-DOS
B. CP/M
C. Windows 10
D. FreeDOS
Answer: Option C
Solution (By JKExamLibrary)
Windows 10 supports multitasking, allowing multiple applications to run concurrently; MS-DOS was single-tasking.

This question belongs to: Computer Operating Systems

Discuss this Question (0)

No comments yet. Be the first to start the discussion!

Practice More Operating Systems Questions

Question #1 Report Error
Which Linux command is used to display the current environment variables?
A. env
B. printenv
C. set
D. All of the above

Correct Answer: Option D


Explanation:
env, printenv, and set all display environment variables; set also shows shell variables.

This question belongs to: Computer Operating Systems
Question #2 Report Error
What mechanism does an operating system use to simulate an environment where multiple processes run concurrently on a single CPU core by switching between them rapidly?
A. Direct Memory Mapping
B. Asymmetric Multiprocessing
C. Time-Slicing (via Context Switching)
D. Defragmentation Scaling

Correct Answer: Option C


Explanation:
Time-slicing leverages rapid, scheduled context switching to give users the illusion of smooth, concurrent application execution on a single core.

This question belongs to: Computer Operating Systems
Question #3 Report Error
Which Linux command is used to display the manual page of another command?
A. info
B. help
C. man
D. whatis

Correct Answer: Option C


Explanation:
The 'man' command (manual) displays the manual pages for commands, providing detailed documentation.

This question belongs to: Computer Operating Systems