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