Consider the following ANSI C function:
int SimpleFunction(int Y[], int n, int x)
{
int total = Y[0], loopIndex;
for (loopIndex = 1; loopIndex <= n - 1; loopIndex++)
total = x * total + Y[loopIndex];
return total;
}
Let \( Z \) be an array of 10 elements with \( Z[i] = 1 \), for all \( i \) such that \( 0 \le i \le 9 \). The value returned by SimpleFunction(\( Z, 10, 2 \)) is \(\underline{\hspace{2cm}}\).