Mention some interfaces implemented by linked list in java.
No Answer is Posted For this Question
Be the First to Post Answer
Is arraylist an object in java?
What are E and PI?
Is string pool garbage collected?
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 } }
How do you add an element to a hashset in java?
Why are the objects immutable in java?
Which is best ide for java?
What is join () in java?
Can we override constructor in java?
When should I use a singleton?
Explain the difference between string, stringbuffer and stringbuilder in java?
Difference between JVM and JRE?