Qus : In the absence of a exit condition in a recursive function, the following error is given
Qus एक पुनरावर्ती फ़ंक्शन में निकास स्थिति की अनुपस्थिति में, निम्नलिखित त्रुटि दी गई है
A. Compile time error B. Run time error
C. Logical error D. No error
Solution
B. Run time error
Explanation
When a recursive function is called in the absence of an exit condition, it results in an infinite loop due to which the stack keeps getting filled(stack overflow). This results in a run time error.