Difference between Process and Thread
What is The Difference between Process and Thread
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
VulpesPosted Sep 22, 2014, 5:56 AM
A thread is a thread of execution within a process.
A process can contain multiple threads which execute concurrently. If the machine has only a single processor with a single core, then concurrent execution is an illusion - the operating system simply switches between the threads in such a way that it appears to the user they are executing simultaneously.