Q3. Write a public method called handleTwoArrays that accepts two integer arrays (assuming they are of same sizes) as parameters. The
method invokes switchTwoArrays to perform switching if the sum of the values in the first array is smaller than the sum of the values in the other array (compareTwoArrays need to be called for the purpose).
public void handleTwoArrays(int[] first, int[] second, int size){
// your code starts here.