Gate Exam Numerical Ability

There is a function f(x), such that
f(-2)=29
f(3)=39
Then,
f(3)=?

Read Solution (Total 2)

Gate Other Question

A football match is either won, draw or lost by the host country‘s team. So there are three ways of forecasting the result of any one match, one correct and two incorrect. Find the probability of forecasting at least three correct results for four matches int get(int n)
{
if n<1 get(n-1);
get(n-3);
return (0);
}

If get(6) is called through main then how many times get() function is called?