InterviewSolution
Saved Bookmarks
| 1. |
How do we define the term Thread?(a) Device that controls input(b) Variable that controls movement(c) Controlled execution of applications(d) Device that controls input & Variable that controls movement |
|
Answer» Correct answer is (c) Controlled execution of applications To explain I would say: Threads are sequential units of controlled execution for applications. A thread of execution is the smallest sequence of programmed instructions that can be managed independently by a scheduler, which is typically a part of the operating system. |
|