What is the difference between Process and Threads?
Answer Posted / sathya
Process are heavy weight programs which consume considerable
amnt of memory for execution and are heavily dependent on
system resources for their execution
Threads are light weight and use the min available sys
resources as a whole and can execute simultaneously to
acheive a given task.
| Is This Answer Correct ? | 130 Yes | 23 No |
Post New Answer View All Answers
what is an isolation level?
What are the different methods of identifying an object?
What is an abstract method?
What is synchronization and why is it important?
What is the relationship between the canvas class and the graphics class?
int x=5,i=1,y=0; while(i<=5) { y=x++ + ++x; i=i+2; } System.out.println(x); System.out.println(y); System.out.println(i); How to solve this? Please explain!
How messaging services are done, before release of JMS?
Can we sent objects using Sockets?
When a thread blocks on i/o, what state does it enter?
Explain about thread synchronization inside a monitor?
What do you mean by Socket Programming?
What are externizable interface?
What do you know about seam?
What are the diff types of exception?
How is a java object message delivered to a non-java client?