Which one of the following statements is true?

Arrays have a fixed size when they're initialized while ArrayLists do not
  • Lists use square bracket notation to access positions, while arrays use the get() method
  • Arrays and Lists can both grow and shrink as needed, as you change the number of elements stored
  • Lists use the size() method to get the number of elements, but arrays use the length() method

There are not hints for this question