Suppose I have made the following code segment:
Jeroo dave = new Jeroo();
// Jeroos start with no flowers.
if (dave.hasFlower())
{
dave.toss();
}
else
{
dave.turn(RIGHT);
}
dave.hop();
Which of the following lines will NOT be executed (if any)?
There are not hints for this question