What invokes a thread's run() method?
JVM invokes the thread's run() method when the thread is initially executed.
Main application running the thread.
start() method of the thread class.
None of the above.