GATE Computer Science (CS) 2014 Shift 2 Solved Paper

© examsiri.com
Question : 50 of 65
 
Marks: +1, -0
Consider the following function
double f(double x){
       if( abs(x*x – 3) < 0.01) return x;
       else return f(x/2 + 1.5/x);
}
Give a value q (to 2 decimals) such that f(q) will return q:_____.
  • Your Answer:
Go to Question: