Take out a sheet of paper.
Form teams of two.
public class interface List211<E> { boolean add(int e); void add(int index, E element); public E get(int index) E set(int index, E element) private int size(); }
What is missing?
Write the correct List211<E> interface.