1
A method that only has a declaration and no method body (no code inside the method).
2
new ArrayList()
3
ArrayList name;
4
Automatically wrapping a primitive type in a wrapper class object.
5
It can hold many objects of the same type. It can grow or shrink as needed. You can add and remove items at any index.
6
Automatically converting an object such as an Integer to a primitive.
7
This method is used to delete items from an ArrayList.
8
The an element is accessed by using its ____________.
9
The class that can cast a primitive to an object of a class.
10
The method returns the number of elements in the ArrayList.
11
This method allows the programmer to insert an object at the end of a list or insert an object in the list.
12
The method that will retrieve an element from an ArrayList
13
The method is used to replace an item in the ArrayList with an item of the same type.