Computer Science, asked by renujatakumartib, 1 year ago

Definition of Multithreading
What is meant by multithreading?

Answers

Answered by kvnmurty
1
Multithreading is the facility or feature in the operating system that provides multiple threads of execution for a process.

A thread is a subprocess created in a process, that shares the data of the process.  When threads are spawned from a process, they execute in a coordinated manner and have access to the global data in the process.  A thread is a lightweight solution for interprocess communication (ipc).

Similar questions