is it possible to instantiate the math class?
No Answer is Posted For this Question
Be the First to Post Answer
Name component subclasses that support painting in java programming?
When is an object in the mean to garbage collection?
What does yield method of the thread class do?
In what ways you can handle exception ?
Does java return by reference?
What is are packages?
What are streams in java 8?
Hi am an mca graduate . i have done bsc maths in my degree . every company asks me why you make shift from maths group to computere field . What i need to answer?
What is comparator in java?
Can constructor be inherited?
What is the difference between set and list?
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 } }