Code:Could someone answer this:
Consider:
int[] scores1 = {2,5,8,10}
int [] scores2 = {5,6,8,12}
int result;
int total;
write a statement that multiplies 1st element of scores1 array by last element of the scores2 array and assisgns the result to the result variable??
