Saved Bookmarks
| 1. |
Consider the functionint fun(x: integer){If x > 100 then fun = x - 10;elsefun = fun(fun(x + 11));}For the input x = 95, the function will return |
| Answer» | |