Blaise9914 Blaise9914 28-02-2024 Computers and Technology contestada What is the order of the following code? public static int f(int n) int s = 0; for (int i = 0; i < n; i++) s = s + n; return s; 1) o(1) 2) o(0) 3) o(n log n) 4) o(n)