Short Answer

Consider the following recursive definition,where n is a positive integer.
F(1)= 3
F(n)= F(n - 1)+ 1 if n > 1
The value of F(3)is ____________________.
Correct Answer:
Verified
Related Questions
Q21: Recursive algorithms are implemented using _ functions.