ArrayOperations Class
Write a class name ArrayOperations with the following static methods:
• getTotal. This method should accept a one-dimensional array as its argument and return the total of the values in the array. Write overloaded versions of this method that work with int, float, double, and long arrays.
• getAverage. This method should accept a one-dimensional array as its argument and return the average of the values in the array. Write overloaded versions of this method that work with int, float, double, and long arrays.
• getHighest. This method should accept a one-dimensional array as its argument and return the highest value in the array. Write overloaded versions of this method that work with int, float, double, and long arrays.
• getLowest. This method should accept a one-dimensional array as its argument and return the lowest value in the array. Write overloaded versions of this method that work with int, float, double, and long arrays.
Demonstrate the class in a complete program with test data stored in arrays of various data types.
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.