MCQs City stays free thanks to ads. Please turn off your ad blocker for this site so content and features keep working.
System Administrator 2026
Mutual exclusion implies that ____________
- A. If a process is executing in its critical section, then no other process must be executing in their critical sections
- B. If a process is executing in its critical section, then other processes must be executing in their critical sections
- C. If a process is executing in its critical section, then all the resources of the system must be blocked until it finishes execution
- D. None of the mentioned
In the bakery algorithm to solve the critical section problem ____________
- A. Each process is put into a queue and picked up in an ordered manner
- B. Each process receives a number (may or may not be unique) and the one with the lowest number is served next
- C. Each process gets a unique number and the one with the highest number is served next
- D. Each process gets a unique number and the one with the lowest number is served next
The monitor construct ensures that ____________
- A. Only one process can be active at a time within the monitor
- B. N number of processes can be active at a time within the monitor (n being greater than 1)
- C. The queue has only one process in it at a time
- D. All of the mentioned
.