(Choose 1 answer)
(See picture)
A. 9
Given the recursive algorithm
B. None of the other choices is correct
C. 25
D. 27
procedure T(n: integer)if n <3 then return 3 else if (n mod 2 = 0) then return n else return 3*T(n-1)-2
E. 22
Find ouput if n = 9.
Rsh
Q: 49