What is string pool in java?
No Answer is Posted For this Question
Be the First to Post Answer
Explain the relationship between the Canvas and Graphics class?
What is a function in java?
java Technical questions asked by JPMC
Can multiple catch statements be used in exceptions ?
What is the basic of java?
What is the method to expand and collapse nodes in a jtree?
What is prefix of a string?
Explain yield() method in thread class ?
How to sort an unsorted array in java?
Does Java support multiple Inheritance?
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 is the purpose of an interface?