EchoStar interview question

What is the difference between a process and a thread

Interview Answer

Anonymous

4 Oct 2011

A thread is spawned by a process and is a member of the same memory space. A process is a separate program and all resources are separate from other processes

1