Home » JAVA Programming » Multithreading » Question
  1. What is true about threading?
    1. run() method creates new thread
    2. run() method calls start() method and runs the code
    3. start() method creates new thread and calls code written in run() method
    4. run() method can be called directly without start() method being called
    5. None of these
Correct Option: C

start() eventually calls run() method. Start() method creates thread and calls the code written inside run method.



Your comments will be displayed only after manual approval.