Given the following code fragments drag and drop the appropr
Given the following code fragments, drag and drop the appropriate terminology for how a repetition is accomplished. Repetition is achieved by writing as shown in the following code fragment: double doubleArr[] = {2.0, 4.0}; double result = 0; for (int ix = 0; ix
Solution
Answer:
The first box answer should be loops
by Repetation is achieved by writing loops as shown in the above code.
The second box answer should be recursion
by Repetation is achieved through recursion as shown in the above code.
