Discuss Forum

1.

Consider the following recursive function fun (s , y). what is the value of fun ( 4, 3) int fun ( int x , int y) if ( x =0) return y; return fun ( x,1, x+y); |

  • A. 9
  • B. 9
  • C. 9
  • D. 9

Answer: Option D

Explanation:


Post your comments here:

Name:
Mobile:
Email:(Optional)

» Your comments will be displayed only after manual approval.