in Object Oriented Programming recategorized by
1,334 views
0 votes
0 votes

Consider the following recursive Java function $f$ that takes two long arguments and returns a float value:

public static float f (long m, long n) {
float result = (float)m / (float)n;
if (m < 0 || n<0) return 0.0f;
else result -=f(m*2, n*3);
return result;
}

Which of the following real values best approximates the value of $f(1,3)$?

  1. $0.2$
  2. $0.4$
  3. $0.6$
  4. $0.8$
in Object Oriented Programming recategorized by
1.3k views

1 comment

0.200090 is coming after execution , option A is correct
0
0

Please log in or register to answer this question.

Answer:

Related questions

Quick search syntax
tags tag:apple
author user:martin
title title:apple
content content:apple
exclude -tag:apple
force match +apple
views views:100
score score:10
answers answers:2
is accepted isaccepted:true
is closed isclosed:true