Answered step by step
Verified Expert Solution
Question
1 Approved Answer
In java 1. // finds and returns largest value in the array list. // if numElements InArray is 0, returns o as largest value. //
In java
1. // finds and returns largest value in the array list. // if numElements InArray is 0, returns o as largest value. // receives: list - an array of ints, numElementsInArray - current number of elements stored in list // Example call #1: int theMax = ArrayExamples.findMax(someArrayOfInts, size); // Example call #2: int biggest = ArrayExamples.findMax (myList, 10); // Example call #3: int aMax = ArrayExamples.findMax(yourlist, 25); Il signature of method: public static int findMax(int [] list, int numElements InArray) 2. // finds and returns the smallest value in the array list. // if numElements is o, returns 0 as the smallest value. // receives: list - an array of ints, numElements InArray - current number of elements stored in the array list // Example call #1: // Example call #2: // Example call #3: // signature of method: public static int findMin(int [] list, int numElementsInArray) 3. Il computes and returns average of all values in array list Il computes the average as a double // receives: list - an array of ints, numElements InArray - current number of elements stored in list // returns o if numElements is 0. // Example call #1: // Example call #2: Example call #3: // signature of method: public static double computeAverage(int [] list, int numElements InArray)Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started