(Solved) : 8 Pts Write Java Function Based Induction Determine Many Numbers Array Value 100 Assume Ar Q44075456 . . .
(8 pts) Write a Java function based on INDUCTION to determine how many of the numbers in an array, A, have a value >= 100. Assume array, A, has n elements in it. Model your function after the example I did in class. This MUST result in a recursive (not iterative) algorithm. DO NOT USE GLOBAL VARIABLES To assist you, I have started the function below: int GE100 (int[] A, int n) { // n is the number of items in the array, A, specifically A[O] to A[n-1). // You complete this function. Show transcribed image text (8 pts) Write a Java function based on INDUCTION to determine how many of the numbers in an array, A, have a value >= 100. Assume array, A, has n elements in it. Model your function after the example I did in class. This MUST result in a recursive (not iterative) algorithm. DO NOT USE GLOBAL VARIABLES To assist you, I have started the function below: int GE100 (int[] A, int n) { // n is the number of items in the array, A, specifically A[O] to A[n-1). // You complete this function.
Expert Answer
Answer to (8 pts) Write a Java function based on INDUCTION to determine how many of the numbers in an array, A, have a value >= 10…
OR