Find the output of the following program:
li = ['a', 'b', 'c', 'd', 'e'] print(li[10:] )
[\'a\', \'b\', \'c\', \'d\', \'e\']
[ \'c\', \'d\', \'e\']
[ ]
[\'a\', \'b\']
This question is part of this quiz :