Introduction to ArrayList

AP Computer Science A· difficulty 4/5

ArrayList implements

  • A

    List interface (and Collection)

    check_circle
  • B

    Iterator only

  • C

    Map only

  • D

    Tree

Explanation

<code>class ArrayList<E> extends AbstractList<E> implements List<E>, ...</code>.

Want 10 more like this — adaptive to your weak spots?

Related questions