Top Posters
Since Sunday
c
6
r
4
c
3
m
3
h
3
1
3
n
3
s
3
d
3
c
3
a
3
r
3
New Topic  
Eels Eels
wrote...
Posts: 716
Rep: 0 0
7 years ago
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
Textbook 
Starting Out with Java: Early Objects

Starting Out with Java: Early Objects


Edition: 4th
Author:
Read 169 times
4 Replies
Replies
Answer verified by a subject expert
blitheringblithering
wrote...
Posts: 354
Rep: 9 0
7 years ago
Sign in or Sign up in seconds to unlock everything for free
More solutions for this book are available here
1
University of Notre Dame

Related Topics

Eels Author
wrote...
7 years ago
This helped so much
wrote...
3 years ago
nice
wrote...
3 years ago
thank you
New Topic      
Explore
Post your homework questions and get free online help from our incredible volunteers
  1451 People Browsing
Related Images
  
 137
  
 144
  
 233