CBSE Class 11 Informatics Practices
Question 76 of 80
Lists in Python — Question 6
Back to all questionsTrue
Reason — In Python, [1, 2, 3, 4] < [9, 1] returns True because list comparison is done element-wise from left to right. The comparison stops and returns True upon finding the first pair where the element in the first list is less than the corresponding element in the second list. Here, 1 < 9 is True, hence the result.