Assume for this question, the following method:

public void turnAndDisable(RelativeDirection direction)
{
    this.turn(direction);
    this.toss();
}

What would happen if we called turnAndDisable(4);?

An compiler error would be produced.
  • The jeroo would turn 4 times and toss a flower.
  • Nothing would happen.
  • The Jeroo would turn and toss 4 flowers.

There are no hints for this question