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