Open In App

Aptitude | GATE CS 1998 | Question 47

What value would the following function return for the input x=95 ?

function fun (x:integer):integer;
Begin
  If x >100 then fun = x-10
  Else fun = fun(fun( x+11))
End;

(A) 89
(B) 90
(C) 91
(D) 92

Answer: (C)
Explanation: for solution refer ISRO CS 2017
So option C is correct
Quiz of this Question

Article Tags :