InterviewSolution
Saved Bookmarks
| 1. |
Which of these statements is incorrect?(a) By multithreading CPU idle time is minimized, and we can take maximum use of it(b) By multitasking CPU idle time is minimized, and we can take maximum use of it(c) Two thread in Csharp can have same priority(d) A thread can exist only in two states, running and blocked |
|
Answer» The correct choice is (d) A thread can exist only in two states, running and blocked Explanation: Thread exists in several states, a thread can be running, suspended, blocked, terminated & ready to run. |
|