Recursive Power Method:
Write a method that uses recursion to raise a number to a power.
The method should accept two arguments: the number to be raised and
the exponent. Assume that the exponent is a nonnegative integer.
Demonstrate the method in a program.
Please create program using Java and comment code so to
understand what is happening.