Problem:
Question 1: When the compiler compiles your program, how is a recursive call treated differently than a non-recursive method call?
Question 2: What property of fractals lends itself to recursive thinking?
Question 3: Write a method that uses a loop to figure out the factorial (n!). The method will take an integer n and return the value of n!
Provide a brief explanation for your answer.