List interface?
Answers were Sorted based on User's Feedback
Answer / ravichandra
list inteface can have three types are 1.linkedlist
2.arraylist 3.vector
1.arraylist:It is dynamically growing array that stores
objects.It is not synchronized.
ex:-
ArrayList arl = new ArrayList();
2.Vector:-It is dynamically growing array that stores
objects.It is synchronized.
EX:-
Vector v= new Vector();
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / ravikiran(aptech mumbai)
List interface provides classes and interfaces to save the
objects incliding duplicates.
| Is This Answer Correct ? | 0 Yes | 2 No |
What are "class access modifiers" in Java?
what is the JNDI?
What code optimizations techniques you follow in general practice?
2 Answers Accenture, TCS, Wipro,
How to find the index of the largest number in an arraylist java?
How can you take string into InputStream?
What is the difference between keyword and identifier?
What is string pool?
why using interface interface ?
Where will it be used?
Is string is a data type?
Explain super keyword in java.
What are functions in java?