Home > Java Programming > Collections > Questions and Answers
Exercise:
Section 1
Section 2
Answer and Explanation
Answer:10
Explanation:Array List constructs an empty list with an initial capacity of ten.public ArrayList(){ this(10); }
Comment on this Question
Name: