How java is reliable?
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()); } }
What is a web container j2ee?
Why is j2ee needed?
What is B2B?
What is the difference between sendRedirect() and forward()? in what situations do we have to use send redirect() instead of forward().
13 Answers Honeywell, Mind Tree, Samsung, Wipro,
What is pure java?
What is DDP?
What is actionerrors?
Hi Friends. I want complete technical flow of j2ee project with following technologies. jsp , servlet , Struts , Hibernate , (should follow mvc-2 design pattern) . with DAO ,DTO SERVICE layers .
What is meant by j2ee?
What is a component in java?
What is the difference between session bean and entity bean ?