Vidyalelo
Python · Q60

Python Lists MCQs: Exam Practice for List Concepts

Programming · Python · question 60

Q60

What will be the output of the following Python code? values = [[3, 4, 5, 1], [33, 6, 1, 2]] 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.
3
B.
5
C.
6
D.
33
Answer

Answer: Option D

Solution

Answer: Option D
No explanation is given for this question Let's Discuss on Board