I have a factorial code
class FactorialTest {
public static void main(String args[]){
System.out.println(factorial(10));
}
public static int factorial(int N){
if (N <= 1) return 1;
return N*factorial(N-1);
}
}
It was traced using Trace, and this is the output:

Does that mean that recursion part always done first, and the multipication is later?