What is the difference between Process and Threads?
Answer Posted / sanjit patra
Process is part of program.
But,thread is part of process
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
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!
Can I import same package/class twice? Will the jvm load the package twice at runtime?
What is a modular application? What does module-relative mean?
Explain the advantages and disadvantages of detached objects.
What is the infobus?
Difference between hashmap and hashtable?
Can constructors be synchronized in java?
What you mean by COM and DCOM?
How to pass parameters in RMI?
What are the services in RMI ?
How are commas used in the intialization and iteration parts of a for statement?
Explain how will the struts know which action class to call when you submit a form?
what is a portable component?
What is the relationship between local interfaces and container-managed relationships?
What is the difference between the session.get() method and the session.load() method?