Q21Numerical2 Marks3 Sep 2023
Consider the following snippet of code:
```
L = [1, 2, 3, 4, 5]
S = []
Y = 0
i = 0
while i < len(L):
S = S + L[i:] + L[:i]
for j in S:
Y = j
i += 1
```
What will be the value of len(S) at the end of execution of the above code?
Press Enter to check.