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 |
Explain the selection sort algorithm?
What are adapter classes?
What classes of exceptions may be caught by a catch clause in java programming?
Map map = new HashMap(2); map.add(“1”,”one”); map.add(“2”,”two”); map.add(“3”,”three”); What will happen at this line?
What is multithreading ???? How to stop multithrading in java????
what is the significance of listiterator in java?
What is null statement?
What are the different types of data structures in java?
Is break statement can be used as labels in java?
State one difference between a template class and class template.
How do you use spaces in java?
What is meant by object oriented programming – oop?