Answer:
The correct answer is d)Storage Space
Step-by-step explanation:
a. Running-time growth rate : Recursive Algorithm are more efficient than iterative algorithms in terms of Running-time growth rate
b. The statement is false. Recursive solutions have similar efficiency to iterative solutions solving the same problem : In some problems recursive algorithms are less efficient than iterative algorithms.
c. Both running-time growth rate and storage space : Recursive algorithms are only less efficient in storage in some special cases not commonly.
d. Storage space: The recursive function has a problem, resources! It spend a lot of resources of machine, because need to push and pop variables, that uses lot of memory.