Answer:
The correct answer is E. Statements II and III only.
Step-by-step explanation:
The ArrayList remove function receives two types of data explained below:
- .remove(int index) when receives a number it deletes the item that is positioned on the index given.
- .remove(Element E) when receives an Element it deletes only the item thas is equal than the element given.