Q8Numerical3 Marks13 Apr 2025
Consider the following snippet of code:
What will be the value printed by this program?
```
nums = [3, 6, 9, 12, 15]
result = []
i = 0
while i < len(nums):
result += nums[i:i+1] + nums[i::]
i += 1
print(len(result))
```
Press Enter to check.