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

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.





answered
User Adrian K
by
7.9k points

No related questions found