(Choose 1 answer)
(See picture)
A. 9
B. 5
C. 8
D. 6
Given the recursive algorithm
procedure T(a: real number, n: nonegative integer)if n = 0 then return 1 else return a*T(a, n-1)
E. None of the other choices is correct
Find output if a = 2, n = 3.
El 49