What is the name of the method used to schedule a thread for execution?
A. init()
B. start()
C. run()
D. resume()
Answer: run()
The run() method is the entry point for a thread.
A Java program can have many threads, and these threads can run concurrently, either asynchronously or synchronously.
Threads are important for multi-media, Web applications etc.