3.5k views
0 votes
True or false The List interface defines a collection for storing elements in a sequential order.

User Suing
by
8.0k points

1 Answer

8 votes

Answer:

True

Step-by-step explanation:

A list is a collection where the elements are stored in the ordered sequence and it allows access to each of he elements by its position in the sequence. It allows duplicate values to be stored. It also allows insertion of elements and positional access.

A list is one of the three major categories of the Java collections. The other two categories are maps ans sets.

User Michael Marsee
by
7.5k points