Describe the difference between a Thread and a Process?
Answer Posted / chandra sekhar dola
- A Process has its own memory space, runtime enivorment
and process ID. A Thread runs inside a Process and shares
its resources with other threads.
- A thread is a path of execution that run on CPU,
a proccess is a collection of threads that share the same
virtual memory. A process have at least one thread of
execution, and a thread always run in a process context.
- Process is unit of allocation while Thread is
unit of execution. Each process has one or more threads.
Each thread belong to one process
| Is This Answer Correct ? | 13 Yes | 3 No |
Post New Answer View All Answers
How do you declare static variable? What is its lifetime?
What is a viewbag?
What is microsoft windows sharepoint services?
Explain about Multi-Language integration?
Explain about the .NET framework?
What is http protocol and how it works?
What is the difference between mvc (model-view-controller) and mvp (model-view-presenter)? : asp.net mvc
When Cookies are expired in ASP.NET?
Define caching.
calling result set one procedure to anothar procedure in sql2000
Define web services in asp.net.
Explain about asp.net state management?
What is application variable in asp.net?
How Session use Cookies in State Management?
Write a code for sending an email from asp.net application.