Answer the following questions.
1. This app presents a new type of event which you haven't encountered before. What is that new event? How often is it triggered?
Answer
When Image Sprite Touched. Image Sprite is triggered whenever it is touched..
2. Consider the apps you've developed so far. Can you list all the different events your apps have responded to? What other events do you think an app can respond to? Explore some of the components in App Inventor and see what event handlers they have.
Answer
When Screen Initializes, When Button Clicked, When Canvas Dragged, When Canvas Touched, When Location Changes
3. What are the advantages of writing procedures in programming? Consider the procedures you wrote for this app.
Answer
You can avoid duplicate code that can get messy because of the overlap, and if changes need to be made you can change it in one spot on the code and it will affect it in every spot.