Consider factorial(k) : if k = 0 return 1, else return k \cdot factorial(...
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Consider factorial(k): if k = 0 return 1, else return k \cdot factorial(k-1). How many times is factorial invoked in total (counting the initial call and the base-case call) to compute factorial(5)?