CBSE Class 12 Computer Science Question 68 of 101

Functions — Question 36

Back to all questions
36
Question

Question 32

What is recursive case?

Answer

Recursive case is the case where the function calls itself with a modified input, moving towards the base case. It allows the function to break down the problem into smaller instances of the same problem until reaching the base case.