What is the difference between Process and Threads?
Answer Posted / jagadeeesh
Process
Each process provides the resources needed to execute a program. A process has a virtual address space, executable code, open handles to system objects, a security context, a unique process identifier, environment variables, a priority class, minimum and maximum working set sizes, and at least one thread of execution. Each process is started with a single thread, often called the primary thread, but can create additional threads from any of its threads.
threads
thread is the entity within a process that can be scheduled for execution. All threads of a process share its virtual address space and system resources. In addition, each thread maintains exception handlers, a scheduling priority, thread local storage, a unique thread identifier, and a set of structures the system will use to save the thread context until it is scheduled.It is termed as a ‘lightweight process’, since it is similar to a real process but executes within the context of a process and shares the same resources allotted to the process by the kernel
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Are there books about seam?
What is a policy?
Define aop(assepct oriented programing)?
If I wanted to use a solarisui for just a jtabbedpane, and the metal ui for everything else, how would I do that?
Describe, in general, how java's garbage collector works?
What is the purpose of the notifyall() method?
How will you pass parameters in RMI? Why do you serialize?
What is the relationship between local interfaces and container-managed relationships?
Why are some of the class and element names counter-intuitive?
What is the relationship between the canvas class and the graphics class?
How can I avoid validating a form before data is entered?
How is a java object message delivered to a non-java client?
What are the different algorithms used for clustering?
What happens when a thread cannot acquire a lock on an object?
For which statements does it make sense to use a label?