What is java gui?
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()); } }
Which compiler is used in java?
What is jetty in java?
What type of code is java?
what is external varibles in jsp?
Why is java important for internet?
What are the different types of events in java?
What are the advantages of object-relational mapping (orm)?
What is entity reference?
What are the topics in j2ee?
What is a jbutton in java?
Write a program to display numeric value in reverse order. Ex: I have given a number like 7584, It should display in reverse order like 4857.