Use recursion to call the values in Java to work inEclipse
• Write a program with a recursive method called multiplyEvens that returns the product of the first n even integers. For example, multiplyEvens (1) returns 2 and multiplyEvens(4) returns 384 (because 2 * 4* 6*8 = 384). The method should not accept any value less than or equal to 0. . Call the method from main and show the results. Show transcribed image text • Write a program with a recursive method called multiplyEvens that returns the product of the first n even integers. For example, multiplyEvens (1) returns 2 and multiplyEvens(4) returns 384 (because 2 * 4* 6*8 = 384). The method should not accept any value less than or equal to 0. . Call the method from main and show the results.
Expert Answer
Answer to Use recursion to call the values in Java to work in Eclipse…