Assume for this question you have a jeroo named martha who does not have a flower

if (martha.hasFlower())
{
    martha.hop();
}
martha.hop();

How many times will this jeroo hop?

One time
  • Two times.
  • This code will throw an error
  • Four times