Question: 3) Create a Test.java class that will include the following static class methods: a) public static int sumOdd(intl] ): A recursive method that finds the

3) Create a Test.java class that will include the following static class methods: a) public static int sumOdd(intl] ): A recursive method that finds the sum of all odd values stored in an array of int. b) public static int lastOccureance(int[] t, int n): A recursive linear search method that wil find the last occurrence of an int n in an array of integers t. c) public static int sumArray(int [] t, int value): a method that will take an array t (e.g. 5,6,7,8)) and a desired sum value (e.g., 15), then returns a subset of numbers (e.g., 7,8) in the array that will result in that sum if such an array exists. If multiple arrays can be found, any one can be returned. For example.if t-11.1.5,4,6) and value - 10, one possible outcome is {1.5.4), another is 4.63 d) Test all the above methods in the main method of your class Test.java
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
