bearbri9472 bearbri9472 26-12-2023 Computers and Technology contestada Consider the following method. public static int method0211 (int n) { int temp = 1; for (int k = n; k > 1; k--) temp *= k; return temp; } What value is returned as a result of the call method0211(5)? A. 120 B. 25 C. 20 D. 5