Multiple choice technology programming languages

Is Abstract Class is Parent Class of ArrayList?

  1. True

  2. False

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

ArrayList extends AbstractList, which is indeed an abstract class. This is a factual statement about Java's Collections hierarchy: ArrayList -> AbstractList -> AbstractCollection.