Assume there are four methods A, B, C, and D. If method A calls method B, method B calls method C, method C calls method D, and method D calls method A, which of the following methods is indirectly recursive?1) A2) B3) C4) D

Respuesta :

Answer:

The answer is A,B,C,D

Explanation:

Because they are mutually recursive. Chains of calls in indirect recursion can contain multiple methods, as well as branches.