What is re-entrant. Is session beans reentrant. Is entity beans reentrant?
No Answer is Posted For this Question
Be the First to Post Answer
difference between Abstract and Interface?
Different between Struts and Spring? or Why use Spring, if you are already using Struts?
What is the relation between the infobus and rmi?
What is a convertor?
In RMI, inorder to sent the stub reference to the client, is we have to load the server object first into the memory or can we directly sent reference to the client?
what is disadvantage of thread?
What is the difference between ear, jar and war file?
Can I import same package/class twice? Will the jvm load the package twice at runtime?
which is the better collection class if the requirement is only displaying the data
Can a thread be a member of another thread?
What is private static final long serialVersionUID = 1L;
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!