What methods are used in Servlet?Applet communication?
Explain the difference between an Interface and an Abstract class?
What is the difference between a Window and a Frame?
What is comparator 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 } }
justify c is portable
What are the Main functions of Java?
0 Answers Akamai Technologies,
Can we convert stringbuffer to string?
what do you mean by classloader?
Explain different forms of polymorphism?
Is arraylist a class in java?
What is the purpose of the File class?
what is default constructor and parameterised constructor with example?