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. Concurrent execution
B. Simultaneous multithreading
C. Parallel execution
D. Distributed processing
Answer: Option C
Solution (By JKSSB Mock Tests)
Parallel execution refers to running multiple threads or processes at the exact same time on different cores.

Discuss this Question (0)

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

Practice More Operating Systems Questions

Question #1
Which Linux command is used to find the location of an executable?
A. whereis
B. find
C. locate
D. which

Correct Answer: Option D


Explanation:
which shows the full path of the command that would be executed, searching in PATH directories.

This question belongs to: Computer Operating Systems
Question #2
Which component of a process contains its local variables, function parameters, and return addresses during execution?
A. Stack
B. Code Section
C. Heap
D. Data Section

Correct Answer: Option A


Explanation:
The stack segment of a process manages temporary execution details like active function call parameters, local variables, and instruction return paths.

This question belongs to: Computer Operating Systems
Question #3
In Android, what is the name of the application framework that allows apps to interact with system services?
A. Dalvik Virtual Machine
B. ART (Android Runtime)
C. Linux Kernel
D. Android Framework

Correct Answer: Option D


Explanation:
The Android Framework provides APIs for apps to access system services like location, sensors, and notifications.

This question belongs to: Computer Operating Systems