What will be the default values of all the elements of an array defined as an instance variable?
No Answer is Posted For this Question
Be the First to Post Answer
how jvm allocates memory for stack?
What is difference between core java and java ee?
How do you get length in java?
List some oops concepts in java?
Can we instantiate interface in java?
Is class is a data type?
What is integer size in java?
Does treeset allow null in java?
What is ctrl m character?
What is the unit of plancks constant?
Can a Byte object be cast to a double value?
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 } }