Question 9
Consider the Java code given below.
public class ArrayOperations { public <T> void reverse(T[] array) { // Reverses the order of elements in the array } public <T extends Number> double sum(T[] array) { // Calculates the sum of elements in the array }}After type erasure, which of the following correctly represents the ArrayOperations class?