Question: Write a java program to merge two arrays. You are given two different arrays of the same size that are filled with numbers. Write a
Write a java program to merge two arrays. You are given two different arrays of the same size that are filled with numbers. Write a method that merges these arrays together. Every item from the first should be in the even indices of the new array and every item from the second should be in the odd. The order of each should be preserved. Please name the new array 'newArray' and ensure this code would work with any inputed numbers. public int[] QuestionSeven(int[] firstArray, int[] secondArray) { // REPLACE WITH CODE return newArray;
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
