For the recursive factorial function output shown below, which lines of output would reflect the backward phase? 1 factorial(3) 2 3 * factorial(2) 3 3 * 2 * factorial(1) 4 3 * 2 * 1 5 3 * 2 6 6 (1 point) Responses 4,5,6 4,5,6 1,2,3 1,2,3 1,4 1,4 1,2,3,4,5,6
1 answer
The lines of output that would reflect the backward phase are 4, 5, and 6.