Explain jta, jndi, and jms.
No Answer is Posted For this Question
Be the First to Post Answer
What does web module contain?
What is a panel java?
What does resource adapt module contain?
What are the differences between Ear, Jar and War files? Under what circumstances should we use each one?
What is a web container in j2ee?
what is direct link to download swing ebook,applet,ejb,core java
What is difference between j2ee and java?
Which is latest technology in java?
What is the concept of connection pooling?
what is the difference between Tomcat 4 & Tomcat 5?
Differentiate between .ear, .jar and .war files.
Whats the O/p of the below code snippet ? And explain how does it imply the concept of call-by-value/call-by reference. (PS : Pls ignore syntax errors) public class One { public oneA(){ sop ("Into One--");} } public class Two extends One{ public twoT(){ sop ("Into Two--"); } } public class Home { One a; Two t; public static void main(argv[]) { sop ("In Home--"); sop(a.oneA()); sop(t.oneA()); sop(a.twoT()); sop(t.twoT()); } }