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