Question: What will be the output of the following code below? public class R{ public static void main (string [] args) { System.out.println(result(4));} public static int

What will be the output of the following code below? public class R{ public static void main (string [] args) { System.out.println(result(4));} public static int result( int x) { if (x == 1) {return 2;} return x+= result( x-1); }} Select one: O a. 11 b. 10 O C. 9
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
