For this question, assume "collection" is a List. Which of the following will return the first element in the list?

collection.get(0);
  • collection.get(1);
  • collection.get(collection.size() - 1);
  • collection.get(collection.size());

There are not hints for this question