Home / CSE MCQs / Python MCQs :: Discussion

Discussion :: Python MCQs

  1. Which of these is false about recursion?
  2. A.
    Recursive function can be replaced by a non-recursive function
    B.
    Recursive functions usually take more memory space than non-recursive function
    C.
    Recursive functions run faster than non-recursive function
    D.
    Recursion makes programs easier to understand

    View Answer

    Workspace

    Answer : Option C

    Explanation :

    The speed of a program using recursion is slower than the speed of its non-recursive equivalent.


Be The First To Comment