Multiple Choice
Which of the following regarding mutex lock is NOT true?
A) mutex lock is a hardware solution to critical-section problem
B) mutex lock is a higher-level software solution to critical-section problem
C) mutex lock suffers from busy waiting
D) the general rule of thumb is to use a mutex lock if the lock will be held for a duration less than two context switches
Correct Answer:

Verified
Correct Answer:
Verified
Q24: Which of the following is not true
Q25: Which of the following is not true
Q26: Explain what race condition is.
Q27: Semaphores and mutex locks both provide mutual
Q28: Under which of the following contention loads
Q30: Which of the following is NOT true
Q31: When mutex lock is implemented as a
Q32: What is the difference between semaphore and
Q33: Which of the following is true?<br>A) No
Q34: Explain what busy waiting is.