Multiple choice Pascal implementations permit recursion(1) because They use dynamic allocation for variable They use static allocation for variable Stacks are not available on all machines It is not possible to implement recursion on all machine Reveal answer Fill a bubble to check yourself A Correct answer Explanation Recursion requires a new set of local variables for each function call, which is managed by dynamic allocation on the stack.