When adding an element to an ArrayList object, you can:
Add new elements at the end of the list if you do not specify a position, or add at any location by specifying a numeric index position.
- Only add new elements by specifying the numeric position where they are to be inserted
- Only add new elements to the beginning of the list
- Only add new elements to the end of the list
There are not hints for this question