What is constructor chaining and how is it achieved in java?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More Core Java Interview Questions

What is the name of the java compiler?

0 Answers  


what is platform independence in java?

5 Answers   CSC, HSBC,


What is Java Shutdown Hook?

0 Answers  


What is the difference between abstraction and encapsulation?

0 Answers  


hi to all,i have a question on static block. i saved below as test.java class test extends a { static { System.out.println("test static"); } public static void main(String []dfs) { } } class a { static { System.out.println("a static"); } public static void main(String []asdf) { } } o/p as static test static but if i change base class as test class then class test { static { System.out.println("test static"); } public static void main(String []dfs) { } } class a extends test { static { System.out.println("a static"); } public static void main(String []asdf) { } } o/p test static explain me why "a static" wasn't print in second code when it is in derived class

1 Answers  






how to connect one jsp page to another jsp page????

6 Answers   IIT, Symphony,


Why we use methods in java?

0 Answers  


What is use of valueof () in java?

0 Answers  


What is the difference between I ++ and ++ I in java?

0 Answers  


Explain reverse a linked list iterative solution in java?

0 Answers  


Can we create a constructor in abstract class?

0 Answers  


Explain java code for recursive solution's base case?

0 Answers  


Categories