What is namespace in java?
No Answer is Posted For this Question
Be the First to Post Answer
What is oops in java?
Is there a sort function in java?
what is meant by abstract class?
What does snprintf return?
a thread is runnable, how does that work? : Java thread
Why Java is not pure Object Oriented language?
Is java still relevant?
What is return used for in java?
What is continuity of a function?
Explain the difference between collection api and stream api in java8?
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 } }
Explain the meaning of java applet.