int sum = 0; for (int i = 0; i < n; i ) { sum = 1; } return sum; given the above code, how many statements involving the variable sum will need to be executed, relative to the input size n?

Respuesta :