Answer Posted / gaurav agrawal
our lines of code can be executed by many requests at a
time, this is the main advantage of the thread.
but the performance will slow down, so threading will be
used where it's needed.
| Is This Answer Correct ? | 16 Yes | 1 No |
Post New Answer View All Answers
What is the difference between the string and stringbuffer classes?
Is the infobus client side only?
Explain RMI Architecture?
What is the difference between a static and a non-static inner class?
What is a tasks priority and how is it used in scheduling?
Can you give me a simple example of using the requiredif validator rule?
Describe, in general, how java's garbage collector works?
What are the purpose of introspection?
What is a modular application? What does module-relative mean?
How database connectivity in XML is achieved?
Where can I find seam examples and documentation?
What restrictions are placed on the values of each case of a switch statement?
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!
Define prototype?
Can I use javascript to submit a form?