Question: Fill in the skeleton below for a method named zeroOdds that takes an array of integers as a parameter. The method should return a new

Fill in the skeleton below for a method named zeroOdds that takes an array of integers as a parameter. The method should return a new array that has only the even values of the original array, with the odd values replaced by zeroes. For example, if the array arr1 = {2,7,-1,8,5}, then the call zeroOdds(arr1) should return the array {2,0,0,8,0}. Note that your code should work for arrays of length zero and that a zero length array with the odds zeroed out is another zero length array.

private static int[] zeroOdds(int[] 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!