What will be displayed by the following program?
values =&nbsp

Loading

Choose the correct option.

What will be displayed by the following program?
values = [[3451], [33612]]
v = values[0][0]
for row in range(0, len(values)):
    for column in range(0, len(values[row])):
        if v < values[row][column]:
            v = values[row][column]
print(v)

A. 1
B. 3
C. 5
D. 6