What are the various thread priorities?
Answer / kumar s
High level priorities:10
Low level priorities:1
Normal priorities:5
| Is This Answer Correct ? | 2 Yes | 0 No |
What are the disadvantages of using threads?
What is thread deadlock? How to resolve thread deadlock?
What are skeletons and stubs and how they are generated?
Can we sent objects using Sockets?
Name three subclasses of the component class?
How to implement RMI in Java?
What is the O/P of the below Code Snippet ? And how does it imply the concept of call-by-value/call-by-reference. (Note : Pls ignore syntx errors) public class One { sop ("Into One--"); } public class Two extends One{ sop ("Into Two--"); } public class Home { One a; Two t; public static void main(argv[]) { sop ("In Home--"); sop(One.a); sop(Two.a); sop(One.t); sop(Two.t); } }
What is bean? Where can it be used?
how to use debug in my elipse to solve problems that exist in my project
what is the life cycle of jsp?
What is the use of Semaphore?
1) Scenario: I developed my application on local system and everything is perfect and tested. Now on UAT this application is deployed on clustered server environment. They are logical or physically clustered. But application is not working over there.  What is the issue with application?  What are the first things which come in your mind?