Home / Questions / Other RecursionError: maximum recursion depth exceeded का समाधान क्या है? इसका quick fix क्या है? Other 0 Views Verified RecursionError: maximum recursion depth exceeded का समाधान क्या है? इसका quick fix क्या है? #python #error #debugging #exception #solution Sarkari Result QA Bank Editorially reviewed exam information Share
Verified Correct Answer add a correct base case or replace deep recursion with an iterative loop add a correct base case or replace deep recursion with an iterative loop Additional Explanation Infinite/deep recursion रोकने के लिए base case या iteration उपयोग करें।
Verified remove the base case remove the base case Additional Explanation यह विकल्प सही समाधान नहीं है।
Verified increase recursion blindly increase recursion blindly Additional Explanation यह विकल्प सही समाधान नहीं है।
Verified call the function recursively forever call the function recursively forever Additional Explanation यह विकल्प सही समाधान नहीं है।