Differentiate storage classes on the basis of their scope?
No Answer is Posted For this Question
Be the First to Post Answer
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 } }
Explain, java is compatible with all servers but not all browsers?
In a program, initializing an array of 100 KB is throwing an out of memory exception while there is 100 MB of memory available. Why?
What is the difference between heap and stack memory?
What is the Vector class?
What do you mean by hashing?
what is thread in Java ?
Accenture NJ mostly ask question on Collection like 1)How to sort Objcts and how treeset sort them 2)Explain mechanism of Hashcode finding in Java 3)Name some of the Sorted collection.
Is hashmap thread safe?
What language is an assembler written in?
How will you load a specific locale?
What are Interceptors?