Question: 2. (2.5pts) Convert the following iterative code into recursive code. Same as in question 1, you will need to create a function and possibly add

2. (2.5pts) Convert the following iterative code into recursive code. Same as in question 1, you will need to create a function and possibly add new parameters that isn't in the iterative function. String concat(String[] names) { String result = ""; for (String name : names) { result += name + ", "; } return result; }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
