Question: 68
(Choose 1 answer)
Given the recursive algorithm Procedure AL(n: integer)If n=0 then AL(n):=1 else if n=1 then AL(n):=2 else if n=2 then AL(n):=3 else AL(n):=AL(n-1)*AL(n-2)*AL(n-3)
Find the value of AL(5).
A. 6
B. 3
C. 36
D. 648
E. None of the other choices is correct