InterviewSolution
Saved Bookmarks
| 1. |
To enable a process to wait within the monitor __________(a) a condition variable must be declared as condition(b) condition variables must be used as boolean objects(c) semaphore must be used(d) all of the mentionedI got this question by my college professor while I was bunking the class.This interesting question is from Process Synchronization in section Processes of Operating System |
|
Answer» CORRECT CHOICE is (a) a condition variable must be DECLARED as condition To explain: To enable a process to wait within the MONITOR a condition variable must be declared as condition. |
|