Operating System (OS) Question:
Download Questions PDF

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.

Download Operating System (OS) Interview Questions And Answers PDF

Previous QuestionNext Question
While running DOS on a PC, which command would be used to duplicate the entire diskette?What is the virtual memory?