Multiple Choice
Consider the following definition of the recursive function print. What is the output of the following statement?
Print(4) ;
A) 0 1 2 3 4
B) 1 2 3 4
C) 4 3 2 1
D) 4 3 2 1 0
Correct Answer:
Verified
Related Questions
Q1: Tracing through _ recursion is more tedious
Q2: Infinite recursions execute forever on a computer.