EchoStar Interview Question

What is the difference between a process and a thread

Interview Answer

Anonymous

Oct 4, 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