Question: In TMax.java, complete the getRandomArray() method that is responsible to generate a one dimensional random array with the size of a random number between 2
In TMax.java, complete the getRandomArray() method that is responsible to generate a one dimensional random array with the size of a random number between 2 and 10. Then populate the Array with some random real values from [0, 1]. Note: you can set the seed by using the args in the main method. Output examples: The output results might be varied depends on the seed that you are using. getRandomArray() -> [0.123, 0.235, 0.3573, 0.657] getRandomArray() -> [0.067, 0.235, 0.657] 2b) Find the third biggest number in the array Then, complete thirdBiggest(int[] array). This method should accept an array that we generated above and return the third biggest number in this array. When array has only two numbers then the function should return bigger of these two.
Step by Step Solution
There are 3 Steps involved in it
It seems like you want to implement the specified methods in Java Heres an example implementation ja... View full answer
Get step-by-step solutions from verified subject matter experts
