What about recursion is true in comparison with iteration?
2024
What about recursion is true in comparison with iteration?
- A.
very expensive in terms of memory.
- B.
low performance.
- C.
every recursive program can be written with iteration too.
- D.
all of the above are true!
Attempted by 87 students.
Show answer & explanation
Correct answer: D
Answer : D
Explanation
Recursion is just an other way to write the same program code. But calling a function again and again makes it expensive in terms of memory, CPU cycles and delivers less performance.