Which access specifier can be used with class ?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between the final method and abstract method?
What is an interface in java?
Write a program in java to calculate the difference between the sum of the odd level and even level nodes of a binary tree.
What are the advantages of exception handling?
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 releases of Java technology are currently available? What do they contain?
What are Brief Access Specifiers and Types of Access Specifiers?
What is the difference between DataInputStream and BufferedReader
Which is fastest collection in java?
What super () does in java?
How do you achieve singleton?
Explain the use of volatile field modifier?