Is int primitive data type?
No Answer is Posted For this Question
Be the First to Post Answer
can we write two same methods in outer class and innerclass.
What is rmi and steps involved in developing an rmi object?
When does an object becomes eligible for garbage collection in java?
What is final?
Advantages of Inheritance in java.
What is the difference between && and & in java?
What do you mean by hashing?
What differences exist between iterator and listiterator?
What is scanner 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 } }
Can we rethrow the same exception from catch handler?
What is method in java ?