What is the term for the technique where a process is divided into smaller parts and executed in parallel on multiple processors? MCQ with Answer and Explanation

What is the term for the technique where a process is divided into smaller parts and executed in parallel on multiple processors?
A. Batch processing
B. Time-sharing
C. Parallel processing
D. Multithreading
Answer: Option C
Solution (By JKSSB Mock Tests)
Parallel processing uses multiple processors to simultaneously execute multiple parts of a program, improving performance.

Discuss this Question (0)

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

Practice More Operating Systems Questions

Question #1
What is the purpose of the Windows 'Safe Mode'?
A. To run the system with maximum performance
B. To load the last known good configuration
C. To enable network support for recovery
D. To boot with minimal drivers and services for troubleshooting

Correct Answer: Option D


Explanation:
Safe Mode loads only essential drivers and services, allowing users to diagnose and fix system issues caused by problematic software or drivers.

This question belongs to: Computer Operating Systems
Question #2
Which of the following processes is the first user-space process started by the Linux kernel during system initialization, typically having a Process ID (PID) of 1?
A. init (or systemd)
B. bash
C. cron
D. kthreadd

Correct Answer: Option A


Explanation:
The 'init' process (modern distributions use systemd) is the very first process launched by the Linux kernel during boot, and it receives PID 1.

This question belongs to: Computer Operating Systems
Question #3
Which Linux command is used to create an alias for a command?
A. alias
B. export
C. ln
D. set

Correct Answer: Option A


Explanation:
alias creates a shortcut for a command or series of commands.

This question belongs to: Computer Operating Systems