InterviewSolution
Saved Bookmarks
| 1. |
What decides thread priority?(a) Process(b) Process scheduler(c) Thread(d) Thread scheduler |
|
Answer» The correct option is (d) Thread scheduler Explanation: Thread scheduler decides the priority of the thread execution. This cannot guarantee that higher priority thread will be executed first, it depends on thread scheduler implementation that is OS dependent. |
|