MicroStrategy interview question

What's the difference between a process and a thread?

Interview Answer

Anonymous

14 Apr 2013

Processes: Independent execution units that contains theirs own stack information, use their own address spaces and only interact with each other via OS Threads: A single process might contains multiple threads. All threads in a process share the memory space and communicate directly.