OCA Java SE 8 Core Java APIs - OCA Mock Question Core Java APIs 4-1
Question
Which of these compile when replacing line 2? (Choose all that apply)
1: ArrayList l = new ArrayList();
2: // INSERT CODE HERE
- int length = l.size();
- int length = l.capacity;
- int length = l.capacity();
- int length = l.length;
- int length = l.length();
- int length = l.size;
- None of the above.
Answer
Note
The ArrayList class defines a method called size().