Question: Create a method removeEvens that removes all even elements from an ArrayList of Integers. The method should also print all the remaining items in the

Create a method removeEvens that removes all even elements from an ArrayList of Integers. The method should also print all the remaining items in the ArrayList.

Once the method is created, call it on the existing ArrayList in the main method.

Coding below was given to be edited

import java.util.ArrayList; public class Odds { public static void main(String[] args) { ArrayList odds = new ArrayList(); for(int index = 1; index <101; index++) { odds.add(index); } //call removeEvens on the array above! } public static void removeEvens(ArrayList array) { } }

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!