Q3Single correct3 Marks10 May 2026
What does the following code compute?
```
def selector(n):
A = []
for x in range(1, n + 1):
if (x - 1) % 4 == 0:
A.append(x)
return A
def aggregator(L):
S = 0
for v in L:
if v % 2 != 0:
S += v
return S
def controller(n):
X = selector(n)
Y = aggregator(X)
return Y
print(controller(25))
```
What is the output?