

InterviewSolution
Saved Bookmarks
1. |
Which of the following represents number of times the operation acquired the lock in the specified mode?(a) system.profile.locks.acquireCount(b) system.profile.locks.acquireWaitCount(c) system.profile.locks.Count(d) none of the mentioned |
Answer» Right answer is (a) system.profile.locks.acquireCount To elaborate: system.profile.locks.acquireWaitCount is number of times the operation had to wait for the acquireCount lock acquisitions because the locks were held in a conflicting mode. acquireWaitCount is less than or equal to acquireCount. |
|