Computer Science, asked by Iasjeet7863, 1 year ago

"what is the name of the method used to start a threat execution"

Answers

Answered by aaa1991
0
Start Method is the name of the method used to start a thread execution
Answered by garywalter1221
0

Explanation: run() method is used to define the code that constitutes the new thread, it contains the code to be executed. start() method is used to begin execution of the thread that is execution of run(). run() itself is never used for starting execution of the thread

Similar questions