- clear
- Removes all the elements from the list
- get
- Returns the element at a given index
- indexOf
- Returns the location of first occurrence of an element, if it exists in the list
- remove
- Removes a specific element from the list
- set
- Replaces the element at a specific location in the list
- add
- Adds an element to the end of the list
- contains
- Determines if the list contains an element
Look at the List documentation (follow the java.util link above, then scroll and click on the List). Match each of the following list functions with the appropriate description of what they do.