InterviewSolution
Saved Bookmarks
| 1. |
Explain the meaning of multithreading. |
|
Answer» The thread is an independent part or unit of a PROCESS (or an application) that is being executed. Whenever multiple threads execute in a process at the same time, we call this "multithreading". You can think of it as a way for an application to multitask. Advantages:
|
|