What is the function of http?
No Answer is Posted For this Question
Be the First to Post Answer
when to use ArrayList and when to use HashMap in webApplication.
Explain java coding standards for classes or java coding conventions for classes?
Can a class extend 2 classes in java?
What is the lifetime and scope of a variable?
Explain the term serialization?
What is final, finally, finalize?
for what purpose we use applets ?
What is volatile data type?
What is the epoch date?
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 } }
How to perform binary search in java?
What is substring of a string?