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(1)
There are no hints for this question