InterviewSolution
Saved Bookmarks
| 1. |
Which of these method is used to start a server thread?(a) run()(b) start()(c) runThread()(d) startThread() |
|
Answer» Right choice is (a) run() To explain: run() method is called when the server thread is started. |
|