What will be the output of the following Python code?
list1 = ["Python", "Java", "c", "C", "C++"]
print(min(list1))
1
c
2
C++
3
C
4
min function cannot be used on string elements
What will be the output of the following Python code?
list1 = ["Python", "Java", "c", "C", "C++"]
print(min(list1))