Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started