Is java is fully object oriented?
No Answer is Posted For this Question
Be the First to Post Answer
What is java transaction service (jts)?
What are the advanced technologies in java?
Why java is called robust and secure?
What are struts?
What is java mobile?
What is javaserver pages (jsp)?
What are the differences between Ear, Jar and War files? Under what circumstances should we use each one?
What do you mean by the deployment descriptor?
Name the Implicit variable which is used to access other implicit objectes present in JSP.
Explain about J2EE Application Architecture
What is use of final keyword in java?
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()); } }