Computer Science, asked by gauridevi3930, 7 months ago

A recursive function without if and
else conditions will always lead to.​

Answers

Answered by SabrinaHaque
0

Yes. ... Recursion is calling the same function within.

Answered by mariospartan
0

A recursive function without if and else conditions will always lead to errors.

Explanation:

  • A recursive operate is one that invokes its own self in loop .
  • We should always declare a base condition in a very algorithmic operate.
  • The compiler can use this basic condition to see once the program ought to be terminated.
  • If the bottom condition is not specific, the program might run indefinitely.
  • Our program can crash as a results of this.
Similar questions