A. We can replace a recursive function by a non-recursive function. हम एक रिकर्सिव फंक्शन को एक नॉन-रिकर्सिव फंक्शन द्वारा प्रतिस्थापित कर सकते हैं।
B. The memory space taken by the recursive functions is more than that of non-recursive function, रिकर्सिव फंक्शनो द्वारा लिया गया मेमोरी स्पेस नॉन-रिकर्सिव फंक्शन की तुलना में अधिक है।
C. Running a recursive function is faster as compared to a non-recursive function. नॉन-रिकर्सिव फंक्शन की तुलना में रिकर्सिव फंक्शन को रन करना तेज़ होता है।
D. The process of recursion makes it easier for users to understand a program. रिकर्सन की प्रक्रिया उपयोगकर्ताओं के लिए प्रोग्राम को समझना आसान बनाती है
Correct Answer is :
C. Running a recursive function is faster as compared to a non-recursive function.