Jeroo Lab 1 preparation

  1. What is the location of the flower?
  2. What direction is the Jeroo facing when it is first created?
  3. What is the minimum number of hops required to get the Jeroo at 0,0 onto the flower?
  4. What is the minimum number of times the Jeroo at 0,0 must turn in order to get on top of the flower?

Take the mixed up lines of code below and place them in the correct order so the program will work.
You can re-use the same line of code as many times as you need to.
One of the statements below is not required. Which one is it?

yourname.hop( );
}
yourname.pick();
Jeroo yourname = new Jeroo( );
method main( )
{
yourname.turn(LEFT);
yourname.turn(RIGHT);