Prepare Interview

Mock Exams

Make Homepage

Bookmark this page

Subscribe Email Address

Operating%20System%20Interview%20Questions%20and%20Answers

Question: What resources are used when a thread created? How do they differ from those when a process is created?
Answer: When a thread is created the threads does not require any new resources to execute the thread shares the resources like memory of the process to which they belong to. The benefit of code sharing is that it allows an application to have several different threads of activity all within the same address space. Whereas if a new process creation is very heavyweight because it always requires new address space to be created and even if they share the memory then the inter process communication is expensive when compared to the communication between the threads.
Is it helpful? Yes No

Most helpful rated by users:

©2024 WithoutBook