Multiple Choice
The pseudocode for a recursive method is shown below. What statement is missing from the area labeled (b) ?
Sailboat.sail to (target)
(a)
If ( not [sailboat is within 5 meters of target] )
{
Do together
{
Sailboat.turn to face target
Sailboat.move forward 2 meters
}
(b)
}
(c)
A) sailboat.sail to (target)
B) Start
C) Do together
D) Stop
Correct Answer:

Verified
Correct Answer:
Verified
Q21: On a computer, conditional recursion continues until
Q22: The pattern of seeds on the head
Q23: _ occurs when a method calls itself
Q24: At each level of exponential recursion, the
Q25: Recursion that is not infinite is called
Q27: The following algorithm is an example of
Q28: A recursive algorithm usually contains a(n) _
Q29: An exponential recursion graph looks like a
Q30: In computer programming, an algorithm that calls
Q31: The pseudocode for a recursive method is