Find the output of the following program:
def addToList(a): a += [10] b = [10, 20, 30, 40] addToList(b) print (len(b))
4
5
6
10
This question is part of this quiz :