why Java does not support multiple inheritances?
No Answer is Posted For this Question
Be the First to Post Answer
What is null statement?
Java does not support multiple inheritance. how interface helps in the same?
What Is Resource Leak?
briefley expalin about the packages
What is the maximum size of byte array in java?
Can we serialize singleton class?
What happens if an exception is throws from an object's destructor?
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 } }
What is style and indentation?
strings in java are objects.why?
Can we declare a constructor as final?
What is the default value stored in Local Variables?