31.2k views
1 vote
Name of the method used to start a thread execution?

User Jeromefroe
by
6.4k points

1 Answer

4 votes

The question has the below multiple choices

A. start();

B. init();

C. run();

D. resume();


The answer is (A) start();

The start() method causes a thread to start execution and is used to start a thread. The thread then moves from new state to runnable state. The run() will never be invoked until the start() method is called.





User Adrian K
by
6.0k points