Open In App

Aptitude | GATE CS 1998 | Question 47

Like Article
Like
Save
Share
Report

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


Last Updated : 15 Mar, 2018
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads