Multiple choice technology programming languages

What is the Parent Class of ArraList?

  1. AbstractList

  2. List

  3. Array

  4. All of the Above

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

ArrayList extends AbstractList directly, which in turn extends AbstractCollection. List is an interface that AbstractList implements, not a parent class. Array is a separate language feature (fixed-size) unrelated to ArrayList's inheritance hierarchy.