Which is the correct way to start a new thread?
Select the one correct answer.
begin()
.start()
.run()
.resume()
.(c)
Create a new Thread object and call the method start()
.
The call to the start()
method will return immediately and the thread will start executing the run()
method asynchronously.