What is the difference between Java Program Constructor and Java Program Method, What is the purpose of Java Program constructor Please Explain it Breafily?


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

Post New Answer

More Core Java Interview Questions

What does super keyword do?

0 Answers  


What is mvc in java?

0 Answers  


How can I debug the Java security exceptions and AccessControlExceptions?

0 Answers   IBM,


abstract class Demo { public void show() { System.out.println("Hello I am In show method of Abstract class"); } } class Sample extends Demo { public void show() { super.show(); System.out.println("Hello I am In Sample "); } } public class Test { public static void main(String[] args) { //I WANT TO CALL THE METHOD OF BASE CLASS IT IS POSSIBLE OR NOT CAN WE USE SCOPE RESOLUTION OPERATOR TO CALL OR JAVA NOT SUPPORTED THAT :: OPERATORE } }

3 Answers  


Where are local variables stored?

0 Answers  






What is the main purpose of java?

0 Answers  


Can we make constructors static?

0 Answers  


Difference between an argument and a parameter?

10 Answers   Accounting, HCL, IBM, Quinnox,


What happens if an exception is throws from an object's constructor?

0 Answers   Amazon,


What is the concept of multithreading?

0 Answers  


Is array dynamic in java?

0 Answers  


What are Inner classes?

4 Answers  


Categories