Biology Forums - Study Force

Science-Related Homework Help Computer Studies Topic started by: Eels on Dec 17, 2016



Title: How many times will the following method call itself, if 10 is passed as the argument?public static ...
Post by: Eels on Dec 17, 2016
How many times will the following method call itself, if 10 is passed as the argument?

public static void message(int n)
{
    if (n < 0)
    {
      System.out.println("Print this line.\n");
      message(n + 1);
    }
}

A) 10
B) 9
C) 0
D) an infinite number of times


Title: Re: How many times will the following method call itself, if 10 is passed as the argument?public ...
Post by: blithering on Dec 17, 2016
Content hidden


Title: Re: How many times will the following method call itself, if 10 is passed as the argument?public static ...
Post by: Eels on Jan 31, 2017
This helped so much


Title: Re: How many times will the following method call itself, if 10 is passed as the argument?public ...
Post by: deli felum on Oct 7, 2020
nice


Title: Re: How many times will the following method call itself, if 10 is passed as the argument?public ...
Post by: Leo Cardona on Oct 30, 2020
thank you