-
What is true about threading?
-
- run() method creates new thread
- run() method calls start() method and runs the code
- start() method creates new thread and calls code written in run() method
- run() method can be called directly without start() method being called
- None of these
Correct Option: C
start() eventually calls run() method. Start() method creates thread and calls the code written inside run method.