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 mentionedThe question was posed to me by my school teacher while I was bunking the class.My enquiry is from Multithreaded Programming in section Reflections, Multithreaded Programming, Collection Classes and Mathematical Functions of C#

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.



Discussion

No Comment Found

Related InterviewSolutions