Assume for this question you have a jeroo named conor.

while (true)
{
    conor.hop();
}

how many times will conor hop?

This loop will never stop.
  • This loop will never run.
  • This loop will produce a syntax error.
  • This loop will run 17 times and then produce a syntax error.

There are no hints for this question