Question 8 You’re given an array of integers(eg [3,4,7,1,2,9,8]) Find the index of values that satisfy A+B = C + D, where A,B,C & D are integers values in the array.Eg: Given [3,4,7,1,2,9,8] arrayThe following3+7 = 1+ 9 satisfies A+B=C+Dso print (0,2,3,5) Previous Next