Given the following code:

public void demoRecursion(int value){
  if (value > 25)
    System.out.print (80 – value);
  else
    demoRecursion(value * 2);
}

What is the output for demoRecursion(5)

40
  • 0
  • 25
  • 80

There are no hints for this question