Second Practice Quiz

To confirm that you understand the major concepts you’ve seen with Reeborg, try to answer the first 4 questions without opening the Reeborg environment.

Question 1 - While Loops

Question 2 - While and Repeat Loops

Question 3 - Loops and If

Question 4 - Loops and If/Else

Question 5 - Mirror Image

The room (shown below) has alcoves on the left and the right. Some of the alcoves contain daisies. For each alcove on the left side that contains a daisy, make Reeborg move the daisy to the opposite alcove on the right hand side. One possible starting world could look like the following:

Open the Mirror Image Practice Quiz world and create a solution to this problem!

../_images/practice_quiz_alcove_start.png

Do not look at this sample solution unless you have already finished creating your own solution!

Question 6 - Mirror Image - Part 2

This time, the distance between the alcove on the right and left is not consistent (in other words, the alcoves can be different distances apart). Once again, for each alcove on the left side that contains a daisy, make Reeborg move the daisy to the opposite alcove on the right hand side. One possible starting world could look like the following:

Open the Mirror Image Practice Quiz world and create a solution to this problem!

../_images/practice_quiz_alcove2_start.png

Do not look at this sample solution unless you have already finished creating your own solution!

Next Section - 1. Quick Python Overview