Question: Question 22 the following code is public static void doom(String m, int n){if (n >= 1){ System.out.println(m); doom(m, n-1);} Not yet answered Marked out of

Question 22 the following code is public static void doom(String m, int n){if (n >= 1){ System.out.println(m); doom(m, n-1);} Not yet answered Marked out of 1.00 Select one: p Flag question O a. an iterative function computing the sum of an integer number O b. a recursive function computing the length of a String. O c. a recursive method displaying a string n times O d. an iterative function computing the length of a String. PREVIOUS PAGE NEXT PAGE
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
