Which numeric operation is implemented with iteration in the
Which numeric operation is implemented (with iteration) in the previous question?
A) arithmetic series
B) factorial
C) fibonacci
D) exponentiation
The previous question that was mentioned at the top is this one:
\"Consider the following iterative algorithm. Which recursive algorithm does the same thing as the iterative algorithm? Assume that the variable x is greater than zero. Select all that apply.
public static void int doSomething(int x) {
int result = 1;
while(x > 1) {
result = result * x;
x--;
}
return result;
}\"
Solution
Answer :
Which numeric operation is implemented (with iteration) in the previous question?
A) arithmetic series
B) factorial
C) fibonacci
D) exponentiation
Answer:
A) arithmetic series
...............
