Question:medium

Which of the following problems can occur due to improper process synchronization?

Show Hint

Two options are memory topics and one is a scheduling effect. Pick the resource-waiting problem.
Updated On: Jul 2, 2026
  • Starvation
  • Thrashing
  • Demand paging
  • Convoy effect
Show Solution

The Correct Option is A

Solution and Explanation

Ask which option is about processes competing for shared access. Thrashing and demand paging both belong to memory management, so they are out. The convoy effect is a scheduling artifact of FCFS, not a synchronization bug.

Starvation is the case where a waiting process is repeatedly passed over and never granted the resource it needs. That is a direct outcome of unfair or improper synchronization among processes.

\[\boxed{\text{Starvation}}\]
Was this answer helpful?
0