Could someone explain to me what it returns?
int result2 = negative(-3); System.out.println("The final answer is " + result2);
[B]public[/B] [B]int[/B] negative(int num){
[B]if[/B](num >= 20){
[B]return[/B] -5;
}[B]else[/B]{
[B]return[/B] negative(num + 4) + 2 * num;
}
}