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
Get step-by-step solutions from verified subject matter experts
