What are the diff types of exception?
No Answer is Posted For this Question
Be the First to Post Answer
What do you know about seam?
What is re-entrant. Is session beans reentrant. Is entity beans reentrant?
can any one tell me how to learn good coding techniques
What is RMI architecture?
Explain Object Serialization and it can be used?
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); } }
How to send a request to garbage collector?
Explain about thread synchronization inside a monitor?
What is the return type of interrupt method?
When a thread terminates its processing, it enters into what state?
Which characters may be used as the second character of an identifier, but not as the first character of an identifier?
if i know the lenght of collection in hand, should I use Array or Arraylist? justify