What is the Parent Class of ArraList?
-
AbstractList
-
List
-
Array
-
All of the Above
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.