Middle School course

Programming 202

  • GRADES 5-6
  • INTERMEDIATE
  • WEB IPAD
  • 16 LESSONS
Slide: 1 of 20

Answer Key

Module 3: Jump Enemy Lines

Module 4: Line Hopper

Module 6: Change Size

Module 7: Quiz

1. Which of these blocks makes the racer look like it is jumping?

  • {"func":"blockControlRepeat","values":[{"type":"number","value":"10"}],"containers":[null]}
  • {"func":"blockLooksChangeSizeBy","values":[{"type":"number","value":"10"}]}
  • {"func":"blockMotionPointTowards","values":[{"type":"string","value":"mouse-pointer"}]}
  • {"type":"wrapper","func":"valueSensingMouseDown"}

2. Which block allows you to start drawing?

  • {"func":"blockMotionPointTowards","values":[{"type":"string","value":"mouse-pointer"}]}
  • {"func":"blockLooksChangeSizeBy","values":[{"type":"number","value":"10"}]}
  • {"func":"blockPenDown"}
  • {"func":"blockPenUp"}

3. Which block allows you to stop drawing?

  • {"func":"blockPenDown"}
  • {"func":"blockPenUp"}
  • {"type":"wrapper","func":"valueSensingMouseDown"}
  • {"func":"blockLooksChangeSizeBy","values":[{"type":"number","value":"10"}]}

4. {"func":"blockLooksChangeSizeBy","values":[{"type":"number","value":"2"}]} What would happen when you changed the size by -2 instead of 2?

  • The racer would move backward instead of forward
  • The racer would grow even more than before
  • Nothing
  • The racer would shrink instead of grow

5. What's the difference between the {"func":"blockControlForever","containers":[null]} and {"func":"blockControlForeverIf","values":[{"type":"boolean","value":"false"}],"containers":[null]} blocks?

  • The 'Forever' block will run until the end of the program, while the 'Forever if' block will run as long as its condition is satisfied
  • The 'Forever if' block will run until the end of the program, while the 'Forever' block will run as long as its condition is satisfied
  • The 'Forever' block and the 'Forever if' block will both run even after the program finishes
  • The 'Forever' block will run after the program finishes, while the 'Forever if' block will run as long as its condition is satisfied

6. {"func":"registerFlagTrigger","next":{"func":"blockControlForeverIf","values":[{"type":"wrapper","func":"valueSensingKeyPressed","values":[{"type":"choice","value":"space"}]}],"containers":[{"func":"blockPenUp","next":{"func":"blockControlRepeat","values":[{"type":"number","value":"10"}],"containers":[{"func":"blockControlWait","values":[{"type":"number","value":".2"}],"next":{"func":"blockLooksChangeSizeBy","values":[{"type":"number","value":"10"}]}}],"next":{"func":"blockControlRepeat","values":[{"type":"number","value":"10"}],"containers":[{"func":"blockLooksChangeSizeBy","values":[{"type":"number","value":"10"}],"next":{"func":"blockControlWait","values":[{"type":"number","value":".2"}]}}],"next":{"func":"blockPenDown"}}}}]}} What would happen if you removed the pen up and pen down blocks?

  • The racer would draw a different color when it jumped
  • The racer would keep drawing when it jumped
  • The racer would stop drawing when it jumped
  • The racer would not be able to move

7. What would happen if you changed {"func":"blockControlRepeat","values":[{"type":"number","value":"10"}],"containers":[{"func":"blockLooksChangeSizeBy","values":[{"type":"number","value":"10"}],"next":{"func":"blockControlWait","values":[{"type":"number","value":".2"}]}}]} to {"func":"blockControlRepeat","values":[{"type":"number","value":"20"}],"containers":[{"func":"blockLooksChangeSizeBy","values":[{"type":"number","value":"10"}],"next":{"func":"blockControlWait","values":[{"type":"number","value":".2"}]}}]}?

  • The racer would not change size
  • The racer would shrink instead of growing
  • The racer would grow more
  • The racer would grow the same amount

8. What would happen to the racer's path if you replaced {"func":"registerFlagTrigger","next":{"func":"blockControlForeverIf","values":[{"type":"wrapper","func":"valueSensingKeyPressed","values":[{"type":"choice","value":"space"}]}],"containers":[{"func":"blockPenUp","next":{"func":"blockControlRepeat","values":[{"type":"number","value":"10"}],"containers":[{"func":"blockLooksChangeSizeBy","values":[{"type":"number","value":"10"}],"next":{"func":"blockControlWait","values":[{"type":"number","value":".2"}]}}],"next":{"func":"blockControlRepeat","values":[{"type":"number","value":"10"}],"containers":[{"func":"blockLooksChangeSizeBy","values":[{"type":"number","value":"-10"}],"next":{"func":"blockControlWait","values":[{"type":"number","value":".2"}]}}],"next":{"func":"blockPenDown"}}}}]}} with {"func":"registerFlagTrigger","next":{"func":"blockControlForeverIf","values":[{"type":"wrapper","func":"valueSensingKeyPressed","values":[{"type":"choice","value":"space"}]}],"containers":[{"func":"blockPenSetColor","values":[{"type":"color","value":"#ff00ff"}],"next":{"func":"blockControlRepeat","values":[{"type":"number","value":"10"}],"containers":[{"func":"blockLooksChangeSizeBy","values":[{"type":"number","value":"10"}],"next":{"func":"blockControlWait","values":[{"type":"number","value":".2"}]}}],"next":{"func":"blockControlRepeat","values":[{"type":"number","value":"10"}],"containers":[{"func":"blockLooksChangeSizeBy","values":[{"type":"number","value":"-10"}],"next":{"func":"blockControlWait","values":[{"type":"number","value":".2"}]}}],"next":{"func":"blockPenSetColor","values":[{"type":"color","value":"#00ff00"}]}}}}]}}?

  • The path would still disappear when the racer jumps
  • The path would change color instead of disappearing when the racer jumps
  • The racer would change color when space is pressed
  • The path would disappear completely

9. How do you remove the default car Actor?

  • Drag the Actor off the Stage
  • Click the 'x' on the Actor in the Actor area
  • Double click the Actor
  • You can't remove the default car Actor

10. {"func":"registerKeyTrigger","values":[{"type":"choice","value":"space"}],"next":{"func":"blockControlRepeat","values":[{"type":"number","value":"10"}],"containers":[{"func":"blockLooksChangeSizeBy","values":[{"type":"number","value":"10"}],"next":{"func":"blockControlWait","values":[{"type":"number","value":".2"}]}}],"next":{"func":"blockControlRepeat","values":[{"type":"number","value":"10"}],"containers":[{"func":"blockLooksChangeSizeBy","values":[{"type":"number","value":"-10"}],"next":{"func":"blockControlWait","values":[{"type":"number","value":".2"}]}}]}}} What would happen if you removed the 'Wait' blocks from this code block?

  • The racer would change size too fast to see
  • The racer would change size normally
  • The racer would not change at all
  • The racer would disappear

11. {"func":"registerTrigger","values":[{"type":"wrapper","func":"valueSensingMouseDown"}],"next":{"func":"blockPenUp","next":{"func":"blockControlWhile","values":[{"type":"wrapper","func":"valueSensingMouseDown"}],"containers":[{"func":"blockMotionPointTowards","values":[{"type":"string","value":"mouse-pointer"}],"next":{"func":"blockMotionMove","values":[{"type":"number","value":"10"}],"next":{"func":"blockControlWait","values":[{"type":"number","value":".1"}]}}}]}}} True or false: This code block will make the racer draw a path behind it.

  • True
  • False

12. Which block is used to set and change pen color?

  • {"func":"blockPenUp"}
  • {"func":"blockPenSetColor","values":[{"type":"color","value":"#ffffff"}]}
  • {"func":"blockPenDown"}
  • {"type":"wrapper","func":"valueSensingMouseDown"}

13. {"func":"registerKeyTrigger","values":[{"type":"choice","value":"space"}],"next":{"func":"blockControlRepeat","values":[{"type":"number","value":"10"}],"containers":[{"func":"blockLooksChangeSizeBy","values":[{"type":"number","value":"2"}],"next":{"func":"blockControlWait","values":[{"type":"number","value":".2"}]}}],"next":{"func":"blockControlRepeat","values":[{"type":"number","value":"10"}],"containers":[{"func":"blockLooksChangeSizeBy","values":[{"type":"number","value":"-2"}],"next":{"func":"blockControlWait","values":[{"type":"number","value":".2"}]}}]}}} What would happen if you didn't include the 'Change size by -2' block?

  • The racer would grow but not shrink
  • The racer would grow and shrink normally
  • The racer would grow more than before
  • The racer would only shrink

14. What is the difference between {"func":"registerFlagTrigger","next":{"func":"blockControlForeverIf","values":[{"type":"wrapper","func":"valueSensingKeyPressed","values":[{"type":"choice","value":"space"}]}],"containers":[{"func":"blockControlRepeat","values":[{"type":"number","value":"10"}],"containers":[{"func":"blockLooksChangeSizeBy","values":[{"type":"number","value":"2"}],"next":{"func":"blockControlWait","values":[{"type":"number","value":".2"}]}}],"next":{"func":"blockControlRepeat","values":[{"type":"number","value":"10"}],"containers":[{"func":"blockLooksChangeSizeBy","values":[{"type":"number","value":"-2"}],"next":{"func":"blockControlWait","values":[{"type":"number","value":".2"}]}}]}}]}} and {"func":"registerKeyTrigger","values":[{"type":"choice","value":"space"}],"next":{"func":"blockControlRepeat","values":[{"type":"number","value":"10"}],"containers":[{"func":"blockLooksChangeSizeBy","values":[{"type":"number","value":"2"}],"next":{"func":"blockControlWait","values":[{"type":"number","value":".2"}]}}],"next":{"func":"blockControlRepeat","values":[{"type":"number","value":"10"}],"containers":[{"func":"blockLooksChangeSizeBy","values":[{"type":"number","value":"-2"}],"next":{"func":"blockControlWait","values":[{"type":"number","value":".2"}]}}]}}}?

  • The two code blocks do the same thing
  • The first block will make the racer jump as soon as the program starts, while the second block will make the racer jump only when space is pressed
  • The first block will not make the racer jump, while the second block will make the racer jump only when space is pressed
  • Neither of the blocks will make the racer jump

15. What would happen if you replaced {"func":"registerFlagTrigger","next":{"func":"blockControlForeverIf","values":[{"type":"wrapper","func":"valueSensingKeyPressed","values":[{"type":"choice","value":"space"}]}],"containers":[{"func":"blockControlRepeat","values":[{"type":"number","value":"10"}],"containers":[{"func":"blockLooksChangeSizeBy","values":[{"type":"number","value":"2"}],"next":{"func":"blockControlWait","values":[{"type":"number","value":".2"}]}}],"next":{"func":"blockControlRepeat","values":[{"type":"number","value":"10"}],"containers":[{"func":"blockLooksChangeSizeBy","values":[{"type":"number","value":"-2"}],"next":{"func":"blockControlWait","values":[{"type":"number","value":".2"}]}}]}}]}} with {"func":"registerFlagTrigger","next":{"func":"blockControlForeverIf","values":[{"type":"wrapper","func":"valueSensingMouseDown"}],"containers":[{"func":"blockControlRepeat","values":[{"type":"number","value":"10"}],"containers":[{"func":"blockLooksChangeSizeBy","values":[{"type":"number","value":"2"}],"next":{"func":"blockControlWait","values":[{"type":"number","value":".2"}]}}],"next":{"func":"blockControlRepeat","values":[{"type":"number","value":"10"}],"containers":[{"func":"blockLooksChangeSizeBy","values":[{"type":"number","value":"-2"}],"next":{"func":"blockControlWait","values":[{"type":"number","value":".2"}]}}]}}]}}?

  • The racer would jump whenever the mouse is pressed
  • The racer would jump whenever space is pressed
  • The racer would not be able to jump
  • The racer would jump as soon as the program starts

16. What is the size of the pen after running this code block? {"func":"blockPenSetSize","values":[{"type":"number","value":"40"}],"next":{"func":"blockPenChangeSize","values":[{"type":"number","value":"10"}]}}

  • 10
  • 40
  • 50
  • 30

17. What would the line drawn by an Actor with this code block look like? {"func":"registerFlagTrigger","next":{"func":"blockPenSetColor","values":[{"type":"color","value":"#00ff00"}],"next":{"func":"blockPenDown","next":{"func":"blockControlForever","containers":[{"func":"blockPenChangeHue","values":[{"type":"number","value":"10"}]}]}}}}

  • It would be a rainbow line
  • It would be a green line
  • It would be a blue line
  • It would be a black line

18. Oliver wants his racer to stop drawing a line when he jumps, but it keeps drawing after he presses space. What block could he be missing?

  • {"func":"blockPenDown"}
  • {"func":"blockPenUp"}
  • {"func":"blockPenSetColor","values":[{"type":"color","value":"#00ff00"}]}
  • {"func":"registerSpriteTrigger"}

19. What does this code block do? {"func":"registerTrigger","values":[{"type":"wrapper","func":"valueSensingMouseDown"}],"next":{"func":"blockControlWhile","values":[{"type":"wrapper","func":"valueSensingMouseDown"}],"containers":[{"func":"blockMotionTurnCW","values":[{"type":"string","value":"15"}],"next":{"func":"blockMotionMove","values":[{"type":"number","value":"20"}],"next":{"func":"blockControlWait","values":[{"type":"number","value":".05"}]}}}]}}

  • It would make the Actor move in a circle when the mouse is down
  • It would make the Actor follow the mouse pointer when the mouse is down
  • It would make the Actor spin when the mouse is down
  • It would make the Actor draw a square when the mouse is down

20. Quentin is trying to make an Actor grow larger after collecting a power-up. Which of these blocks does he need in his code?

  • {"func":"blockLooksChangeSizeBy","values":[{"type":"number","value":"10"}]}
  • {"func":"blockLooksChangeSizeBy","values":[{"type":"number","value":"-10"}]}
  • {"func":"registerSpriteTrigger"}
  • {"func":"blockControlWhile","values":[{"type":"boolean","value":""}],"containers":[null]}

21. What does this code block do? {"func":"registerTrigger","values":[{"type":"wrapper","func":"valueSensingMouseDown"}],"next":{"func":"blockControlWhile","values":[{"type":"wrapper","func":"valueSensingMouseDown"}],"containers":[{"func":"blockMotionTurnCW","values":[{"type":"string","value":"15"}],"next":{"func":"blockMotionMove","values":[{"type":"number","value":"20"}],"next":{"func":"blockControlWait","values":[{"type":"number","value":".05"}]}}}]}}

  • It would make the Actor move in a circle when touch down occurs
  • It would make the Actor follow your touch location when your finger is down
  • It would make the Actor spin when touch is down
  • It would make the Actor draw a square when touch down occurs

U.S. Standards

  • CCSS-Math: MP.1
  • CCSS-ELA: RF.5.4.A, 6-8.RST.3, 6-8.RST.4, 6-8.RST.7
  • CSTA: 1B-AP-10, 1B-AP-11, 1B-AP-12, 1B-AP-15, 2-AP-13, 2-AP-16, 2-AP-17
  • CS CA: 3-5.AP.10, 3-5.AP.12, 3-5.AP.13, 3-5.AP.14, 3-5.AP.17, 6-8.AP.13, 6-8.AP.16, 6-8.AP.17
  • ISTE: 1.c, 1.d, 4.d, 5.c, 5.d, 7.c

U.K. Standards

Key stage 2
Pupils should be taught to:
  • design, write and debug programs that accomplish specific goals, including controlling or simulating physical systems; solve problems by decomposing them into smaller parts
  • use sequence, selection, and repetition in programs; work with variables and various forms of input and output
  • use logical reasoning to explain how some simple algorithms work and to detect and correct errors in algorithms and programs
  • understand computer networks, including the internet; how they can provide multiple services, such as the World Wide Web, and the opportunities they offer for communication and collaboration
  • use search technologies effectively, appreciate how results are selected and ranked, and be discerning in evaluating digital content
  • select, use and combine a variety of software (including internet services) on a range of digital devices to design and create a range of programs, systems and content that accomplish given goals, including collecting, analysing, evaluating and presenting data and information
  • use technology safely, respectfully and responsibly; recognise acceptable/unacceptable behaviour; identify a range of ways to report concerns about content and contact
Key stage 3
Pupils should be taught to:
  • design, use and evaluate computational abstractions that model the state and behaviour of real-world problems and physical systems
  • understand several key algorithms that reflect computational thinking [for example, ones for sorting and searching]; use logical reasoning to compare the utility of alternative algorithms for the same problem
  • undertake creative projects that involve selecting, using, and combining multiple applications, preferably across a range of devices, to achieve challenging goals, including collecting and analysing data and meeting the needs of known users
  • create, reuse, revise and repurpose digital artefacts for a given audience, with attention to trustworthiness, design and usability
  • understand a range of ways to use technology safely, respectfully, responsibly and securely, including protecting their online identity and privacy; recognise inappropriate content, contact and conduct, and know how to report concerns

Lesson 3: Changing Actor Size

Course: | iPad Web

  • Introduction
  • Jump Enemy Lines Example
  • Jump Enemy Lines
  • Line Hopper
  • Change Size Example
  • Change Size
  • Quiz

Description

Help your students advance their skills as they build Paint Racer, a pen-drawing game, and Cannon Crasher, a physics game. Harness the power of the physics engine to easily program realistic jumps and bouncing balls. Upon completing this lesson plan, students will be able to use model physics properties and generate math art.

Topics

  • Geometric patterns
  • Angles
  • Projectile physics
  • Physics engine
  • Gravity
  • Hit boxes
  • Collisions
  • Bouncing
  • Static platforms
  • Impulse
  • Velocity and force
  • Timers
  • Interactions between objects
  • Special effects

What Students Learn

  • Draw shapes and patterns using pen drawing commands
  • Program fluid motion with keyboard control
  • Control Actors using messaging
  • Define and use functions with parameters
  • Build physics projects using gravity, impulse, and velocity
  • Build their own versions of classic arcade games

Technical Requirements

* Online courses require a modern desktop computer, laptop computer, Chromebook, or Netbook with Internet access and a Chrome (29+), Firefox (30+), Safari (7+), or Edge (20+) browser. No downloads required.
* Tablet courses require an iPad (iOS 10+) with Tynker or Tynker Junior app installed and Internet access