Question: What does mystery ( ) do ? void mystery ( ArrayList nums, int target ) { int i; for ( i = 0 ; i

What does mystery() do?
void mystery(ArrayList nums, int target){
int i;
for(i =0; i < nums.size(); ++i){
if(nums.get(i)== target){
nums.remove(i);
}
}
}
a.
Removes only the first occurrence of target
b.
Results in an index out of bounds error
c.
Removes every occurence of target
d.
Nothing, since the for loop is always skipped

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!