0 votes
in Operating System by
What are the benefits of multithreaded programming?

2 Answers

0 votes
by

It makes the system more responsive and enables resource sharing. It leads to the use of multiprocess architecture. It is more economical and preferred. 

0 votes
by

A thread is also known as a lightweight process. The idea is to achieve parallelism by dividing a process into multiple threads. Threads within the same process run in shared memory space, 

...