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 is the difference between interface & abstract class?
What is audio clip interface? Name few methods of it ?
What is meant by packages?
Who developed java?
What is preparedstatement in java?
What is difference between java and java ee?
What are thread safe functions?
what is a transient variable?
What is polymorphism and what are the types of it?
What is actual difference between statement,prepared statement and callable statement and when we have to use it? pls post a answer with code and clear explanation. thanks
What will happen if we cannot mention "finally" in Java Program ???
In the below example, how many string objects are created?