Answer: (C) start()
Step-by-step explanation:
The method used to start a thread execution is "start()" in most of the programming languages.
The start() method is used to start execution of a thread, it internally calls run() method.
You could also use run() but it would run on the same thread and not create a new one.