Question
a. Write the following Java program using the recursion form
b. For the obtained program, give a figure explaining the execution of the expression: meth(4).
public static int meth(int num)
{
int tmp = 1;
for (int i = 1; i <= num; i++)
{
tmp *= i;
}