<AptiCode/>

Question 756: What is the name of the method used to start a thread execution?

tcs
wipro
infosys
general
aptitude
threads
java-programming

Option B is Correct. Thestart()method causes this thread to begin execution; the Java Virtual Machine calls the run method of this thread.Option A is wrong. There is noinit()method in theThreadclass.Option C is wrong. Therun()method of a thread is like the main() method to an application. Starting the thread causes the object's run method to be called in that separately executing thread.Option D is wrong. Theresume()method is deprecated. It resumes a suspended thread.