In a multiprocessing environment, what is the term for the situation where two or more processors are executing instructions from the same program simultaneously? MCQ with Answer and Explanation

In a multiprocessing environment, what is the term for the situation where two or more processors are executing instructions from the same program simultaneously?
A. Parallel execution
B. Distributed processing
C. Simultaneous multithreading
D. Concurrent execution
Answer: Option A
Solution (By JKExamLibrary)
Parallel execution refers to running multiple threads or processes at the exact same time on different cores.

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 of the following is a feature of the Linux ext4 file system?
A. Case-insensitivity
B. Built-in encryption
C. Compression
D. Journaling

Correct Answer: Option D


Explanation:
ext4 supports journaling to protect data integrity in case of crashes; other features like encryption or compression are optional or not native.

This question belongs to: Computer Operating Systems
Question #2 Report Error
What is the purpose of the Android 'Permission System'?
A. To protect user privacy by controlling app access to sensitive data
B. To allow apps to communicate
C. To manage file permissions
D. To grant superuser rights

Correct Answer: Option A


Explanation:
Android permissions restrict access to dangerous data and system features; users grant permissions at runtime.

This question belongs to: Computer Operating Systems
Question #3 Report Error
In Linux, the '/etc/fstab' file contains:
A. File system mount points and options
B. System hostname
C. User account passwords
D. Network configuration

Correct Answer: Option A


Explanation:
fstab (file systems table) defines how disk partitions and file systems are to be mounted at boot or manually.

This question belongs to: Computer Operating Systems