Answer the following questions true (T) or false (F)
1. In recursion, it is unnecessary to decide whether a stopping case has been reached.
2. A recursive function must not return a value.
1. False
Explanation: In recursion, termination requires that a stopping case be reached. It is necessary to decide whether this case has been reached.
2. False
Explanation: Value returning and void recursive functions are certainly permitted.
Computer Science & Information Technology