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