80.9k views
2 votes
What is the name of the method used to start a thread execution? Select one:

a. Init();

b. Resume();

c. Start();

d. Run();?

User Timtech
by
7.6k points

1 Answer

3 votes

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.

User Xaxum
by
7.4k points