Answer (Choose 1 answer)
Given the algorithm to find the maximum element of a list (See picture)
If the input is the sequence 4. 1, 5, 2, 3, 9, 7, then all the values of the variable Max are
၁ C
A. 1. 4. 5. 2, 9, 7
Β. 4. 1, 5, 9
C. 4.5.9
D. 4, 5, 9,7
Procedure Max (a1,a2,..., an: integers)
Max: =a1
fori: 2 to n do if Max < a; then Max: = a₁
FUO
9