Recursion is memory-intensive because:

a. Recursive functions tend to declare many local variables.
b. Previous function calls are still open when the function calls itself and the activation records of these previous
calls still occupy space on the call stack.
c. Many copies of the function code are created.
d. It requires large data values.

b. Previous function calls are still open when the function calls itself and the activation records of these previous

Computer Science & Information Technology

You might also like to view...

An underlying value that does mathematical calculations on numeric values in a worksheet is ________

A) a cell address B) a text value C) the Formula AutoComplete D) a formula

Computer Science & Information Technology

What is the name of the values the method call passes to the method for the parameters?

a. Arguments. b. References. c. Objects. d. Values.

Computer Science & Information Technology