question archive Let us consider two even-length integer arrays a and b of the same size
Subject:Computer SciencePrice: Bought3
Let us consider two even-length integer arrays a and b of the same size. Write Java method that returns an array c of the same size as the other two arrays that has the first half of the elements copied from the first half of a and the second half copied from the second half of b. For example, if a and b are int a = {-1, 3, -5, 8, 0, -4, 2, 1, 10, 4}; int b = {-3, 1, 5, -7, 3, -2, 0, 9, -4, 6}; then c should be {-1, 3, -5, 8, 0, -2, 0, 9, -4, 6}.