InterviewSolution
Saved Bookmarks
| 1. |
What Is List Interface? |
|
Answer» List INTERFACE EXTENDS the ROOT interface Collection and adds behaviour for the collection that stores a sequence of elements. These elements can be INSERTED or ACCESSED by their position in the list using a zero-based index. List interface extends the root interface Collection and adds behaviour for the collection that stores a sequence of elements. These elements can be inserted or accessed by their position in the list using a zero-based index. |
|