Jeroo Lab 2b preparation

Practice your code reading skills: What letters of the alphabet will be created from the 3 different program codes below?

1. Jeroo kip = new Jeroo(5);

kip.plant();
kip.turn(RIGHT);
kip.hop();
kip.plant();
kip.hop();
kip.plant();
kip.turn(LEFT);
kip.hop();
kip.plant();
kip.hop();
kip.plant();
kip.turn(LEFT);
kip.hop();
kip.plant();
kip.hop();
kip.plant();

2. Jeroo kip = new Jeroo(7);

kip.plant();
kip.hop();
kip.plant();
kip.hop();
kip.plant();
kip.turn(RIGHT);
kip.hop(2);
kip.plant();
kip.turn(RIGHT);
kip.hop();
kip.plant();
kip.hop();
kip.plant();
kip.turn(RIGHT);
kip.hop();
kip.plant();

3. Jeroo kip = new Jeroo(7);

kip.plant();
kip.hop(2);
kip.plant();
kip.turn(RIGHT);
kip.hop(2);
kip.plant();
kip.turn(RIGHT);
kip.hop(2);
kip.plant();
kip.turn(RIGHT);
kip.hop();
kip.turn(RIGHT);
kip.hop();
kip.plant()
;

4. What is the code to create a Jeroo that starts out at location (2,7) facing NORTH with 8 flowers?

5. What is the code to create a Jeroo that starts out facing WEST at location (5,10)with no flowers?

6. If there are 2 Jeroos who have been created with the following lines of code:
Jeroo artemis = new Jeroo(1);
Jeroo letitia = new Jeroo(2,1)
;

What is the code to pass the flower from artemis to letitia?