The following method is intended to return the index of the location of target in the ArrayList arrList, otherwise returns -1.

public int find(ArrayList arrList, int target) {
for (int i = 0; i < arrList.size(); i++) {
if (target == arrList.get(i)) {
return i;
}
return -1;
}

return -1;
}
Which of the following statements is true about the method?

I. It returns the intended output if target is the first item in arrList.

II. It returns the intended output if target is the last item in arrList.

III. It returns the intended output if target is not in arrList.


A. I only
B. II only
C. III only
D. I and III
E. II and III