What about recursion is true in comparison with iteration?

2024

What about recursion is true in comparison with iteration?

  1. A.

    very expensive in terms of memory.

  2. B.

    low performance.

  3. C.

    every recursive program can be written with iteration too.

  4. 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.

Explore the full course: Coding For Placement