Which server is best for java?
No Answer is Posted For this Question
Be the First to Post Answer
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()); } }
Is java is fully object oriented?
Give some advantages of orm (object-relational mapping)?
Define thin client?
What is layout in java?
Why java is called portable language?
what is interface in java ?can you explain with simple example?and what is the difference between abstract and interface?
What is the difference between java and j2ee?
What every java developer should know?
What is the best java course?
What is sandbox in java?
Which of the following are subclasses of java awt component?