-
-
-
-
How to use JNI in java? and what are Struts and jini?and how to apply native code in java?
Pl. explain with the e.g.
-
-
-
-
-
A Inner class is defined in a parameterized function of outer class then the inner class is able to access the parameters of that function?
Inner class can access the parameters if the parameters are final
-
-
Which one do you prefer between methods of loading and registering a driver ..?
we have got two methods of loading and registering a driver. i would like to know which one could be preferable class.forName(sun.jdbc.odbc.JdbcOdbcDriver) or Driver d= new Driver(sun.jdbc.odbc.JdbcOdbcDriver) Driver Manager.register Driver(d) ?
-
-
-
-
-
-
-
-
Why statement a = a++; gives different output in C++ and java ?
Because C++ solve postfix ++,-- after assignment (=) operator.
-
Why statement printf("%d%d%d",++a,a,a++) in C and = a++; System.out.printf("%d%d%d",++a,a,a++) in Java gives different output?
Because in C++ function argument associativity is right to left but in java it is left to right
Core Java Interview Questions
Ans