Multiple Choice
Which of the following is NOT true regarding conditional variable, e.g. x?
A) The only operations that can be invoked on a condition variable are wait() and signal()
B) x.wait() means that the process invoking this operation is suspended until another process invokes x.signal()
C) The x.signal() operation resumes exactly one suspended process
D) If no process is suspended, then the signal() operation still affects the state of the semaphore
Correct Answer:

Verified
Correct Answer:
Verified
Q9: Which of the following critical-section problem's requirements
Q10: Which of the following is NOT true
Q11: Which of the following critical-section problem's requirements
Q12: Which of the following is true for
Q13: Assume count is a variable name, which
Q15: Solutions to the critical section problem may
Q16: Explain what a deadlock is.
Q17: Mutex lock variable is binary.
Q18: Bounded waiting implies progress, and progress implies
Q19: Write two short methods that implement the