Computer Science, asked by sachinsaji6140, 9 months ago

Which of these will create and start this thread?

Answers

Answered by Zisha7
0

Answer:

The first way is to extend the Thread class, override the run() method with the code you want to execute, then create a new object from your class and call start(). The second method is to pass an implementation of the Runnable interface to the constructor of Thread, then call start().

Similar questions