(Choose 1 answer)
Given the algorithm to find the maximum element of a list (See picture)
Procedure Max (a1,a2,..., an: integers)
If the input is the sequence 1, 4, 5, 2, 7, 9, 3, then all the values of the variable Max are
Max: =a1fori: 2 to n do if Max < a; then Max: = a;
A. 4. 5. 7.9
B. 1, 5, 7, 9
C. 1, 4, 5, 2, 7, 9
D. 1, 4, 5, 7, 9
Osh
Q: 40