package org.teachingkidsprogramming.section07objects; import org.teachingkidsprogramming.recipes.quizzes.graders.SpiderQuiz; import org.teachingkidsprogramming.recipes.quizzes.graders.SpiderWebQuizGrader; public class SpiderWebQuiz extends SpiderQuiz { @Override public void question1() { // Do the following the current number of times HINT: "number" is a variable name // Call circle() // Repeat } public void question2() { // Create and then call a recipe called circleAround which // Does the following 3 times // Call adjust() // Call question1 // Repeat } public void question3() { // Create and then call a recipe called grow which // Changes the current length so it is multiplied by 2.5 } public void question4() { // Create and then call a recipe called shrink which // Decreases the current length by 9 pixels } public void question5() { // Create and then call a recipe called expand which // Increases the current number by 12 } public static void main(String[] args) { new SpiderWebQuizGrader().grade(new SpiderWebQuiz()); } }