Can we override the static method?
No Answer is Posted For this Question
Be the First to Post Answer
Is the milky way in a void?
what is d difference between deep cloning and shallow cloning in core java?
Describe OOP in java?
Difference between overriding and overloading in java?
Explain access modifiers in java.
How will you initialize an Applet?
Java is based on pass by reference or pass by value ..
Why array is used in java?
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 are the main uses of the super keyword?
What are the differences between unchecked exception, checked exception, and errors?
Explain Basics of OOP Language in java