What is the List interface

The List interface provides support for ordered collections of objects.

Showing Answers 1 - 3 of 3 Answers

ramu

  • Mar 10th, 2006
 

Extends collection,maintain elements in a sequential order, duplicates allowed

  Was this answer useful?  Yes

Amit Patil

  • Sep 17th, 2007
 

List interface extends Collection interface. They allow duplicates objects unlike Sets. Some of the most commonly used implementation of list interfaces are ArrayList, LinkedList and Vector

  Was this answer useful?  Yes

Ramadevi

  • Oct 3rd, 2007
 

The list interface extends Collection and declares the behaviour of a collection that stores a sequence of elements. Elements can be inserted or accessed by their position in the list, using a Zero-based index. Alist may contain duplicate elements.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions