Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Will this method correctly traverse an ArrayList and remove all multiples of 7 ? Why or why not? public void removeMult 7 s ( ArrayList

Will this method correctly traverse an ArrayList and remove all multiples of 7? Why or why not?
public void removeMult7s(ArrayList array)
{
int counter =0;
while(counter < array.size())
{
if(array.get(counter)%7==0)
{
array.remove(counter);
counter++;
}
else
{
counter++;
}
}
}

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

More Books

Students also viewed these Databases questions

Question

What are the disadvantages of arbitration?

Answered: 1 week ago

Question

=+What is the nature of the unions in the particular country?

Answered: 1 week ago