The question has the below multiple choices
A. start();
B. init();
C. run();
D. resume();
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.