InterviewSolution
Saved Bookmarks
| 1. |
On call of which type of method the new created thread will not start executing?(a) Begin()(b) Start()(c) New()(d) All of the mentioned |
|
Answer» The correct option is (b) Start() Explanation: Once created, the new thread will not start running until you call its Start() method, which is defined by Thread. |
|