What are the different types of events in java?
Is visual studio good for java?
In DAO we are writting sql queries , how it is possible with creating and closing database connections.
what is data modeling?what is final method
There are 2 classes . Class A and Class B. In Class A i declared a variable in private. if we can access this private variable in Class B. If yes means , how we can access ?
7 Answers HCL, Itx Centrics, Virtusa,
What are struts?
Which package is imported by default in java?
Is java gui dead?
What is java naming and directory service?
What is deployment descriptor?
Give some advantages of orm (object-relational mapping)?
What is conversational state?
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()); } }