1. add(E e): Adds an element to the end of the list.
  2. addAll(Collection<? extends E> c): Adds all elements from a collection to the end of the list.
  3. set(int index, E element): Replaces an element at a specified index.
  4. remove(int index): Removes an element at a specified index.
  5. remove(Object o): Removes the first occurrence of a specified element.
  6. size(): Returns the number of elements in the list.
  7. lastIndexOf(Object o): Returns the index of the last occurrence of a specified element.
  8. iterator(): Returns an iterator over the elements in the list.
  9. listIterator(): Returns a list iterator over the elements in the list.

ArrayList Operations

  1. Add Elements
  2. Remove Elements
  3. Get Elements
  4. Set Element
  5. Traversal Techniques

LinkedList Operations

  1. Add Elements
  2. Remove Elements
  3. Get Elements