[solved]-11 20 Points Write Recursive Method Called Findsmallest Finds Largest Value Among Integers Q39001480
11. (20 points) Write a recursive method called findSmallest that finds the largest value among integers in an array. The method takes 2 parameters: – array, a non-empty array of integers – low, a positive integer, no more than size of array, representing number of elements to analyze in array For example, int [] a={13, 22, 3, 44, 25); System.out.println(findSmallest(a,5)); //will print 3 System.out.println(findSmallest(a,2)); //will print 13 Show transcribed image text 11. (20 points) Write a recursive method called findSmallest that finds the largest value among integers in an array. The method takes 2 parameters: – array, a non-empty array of integers – low, a positive integer, no more than size of array, representing number of elements to analyze in array For example, int [] a={13, 22, 3, 44, 25); System.out.println(findSmallest(a,5)); //will print 3 System.out.println(findSmallest(a,2)); //will print 13
Expert Answer
Answer to 11. (20 points) Write a recursive method called findSmallest that finds the largest value among integers in an array. Th… . . .
OR

