High School course

Programming 302

  • GRADES 7+
  • ADVANCED
  • WEB
  • 16 LESSONS
Slide: 1 of

Answer Key

Module 2: Learn to Jump

Module 3: Learn to Double Jump

Module 4: Jumpman

Module 5: Create Your Own Side-Scroller Game

Module 6: Quiz

1. What would happen if we only used the {"func":"blockPhysicsApplyImpulse","values":[{"type":"number","value":"50"}]} block instead of the {"func":"blockPhysicsApplyImpulse","values":[{"type":"wrapper","func":"valueOpMultiply","values":[{"type":"wrapper","func":"valueSensingTimer"},{"type":"number","value":"50"}]}]} block?

  • The cannonball would always travel with the same impulse whenever it was fired
  • The cannonball would travel farther the longer the mouse was held
  • The cannonball would travel shorter the longer the mouse was held
  • The cannonball would not be able to move

2. What will this code block do to an Actor? {"func":"blockPhysicsApplyImpulse","values":[{"type":"number","value":"-50"}]}

  • It will push the Actor backwards away from whatever direction it's facing
  • It will push the Actor forward towards whatever direction it's facing
  • It will always push the Actor up regardless of what direction it's facing
  • It will always push the Actor down regardless of what direction it's facing

3. What direction does this block apply the impulse in? {"func":"blockPhysicsApplyImpulse","values":[{"type":"number","value":"50"}]}

  • It applies the impulse in the direction the Actor is facing
  • It applies the impulse along the y axis
  • It applies the impulse along the x axis
  • It applies the impulse towards the left side of the screen

4. True or false: You can apply multiple impulses to an Actor.

  • True
  • False

5. Taylor wants to program a game where her Actor jumps when the up key is pressed. Instead of using the Change Y By block, Taylor wants to apply an impulse upwards. Which of these code blocks will help her program her character to jump up using an impulse?

  • {"func":"registerKeyTrigger","values":[{"type":"choice","value":"up arrow"}],"next":{"func":"blockPhysicsApplyImpulseAngle","values":[{"type":"number","value":"50"},{"type":"number","value":"0"}]}}
  • {"func":"blockControlForeverIf","values":[{"type":"wrapper","func":"valueSensingKeyPressed","values":[{"type":"choice","value":"space"}]}],"containers":[{"func":"blockPhysicsApplyImpulse","values":[{"type":"number","value":"0"}]}]}
  • {"func":"registerKeyTrigger","values":[{"type":"choice","value":"up arrow"}],"next":{"func":"blockPhysicsSetRestitution","values":[{"type":"number","value":"50"}]}}
  • {"func":"registerKeyTrigger","values":[{"type":"choice","value":"up arrow"}],"next":{"func":"blockPhysicsStart"}}

6. How many Actors can you animate at once?

  • As many as you want
  • Only 5 Actors can be animated on the Stage at any given time
  • Only one Actor at a time
  • You cannot animate Actors

7. If you have an Actor with the following code, how would you make it animate? {"func":"registerKeyTrigger","values":[{"type":"choice","value":"space"}],"next":{"func":"blockLooksNextCostume"}}

  • Press the space bar over and over
  • Just press Play and watch
  • You can't animate this Actor
  • Click on the Actor

8. Wendy is looping through her Actor's Costumes. She wants her character's dancing Costumes to animate faster than the other Costumes. The Actor's dancing Costumes are the first 8. Which code blocks can help her do this?

  • {"func":"blockControlForever","containers":[{"func":"blockLooksNextCostume","next":{"func":"blockControlIf","values":[{"type":"wrapper","func":"valueOpGreater","values":[{"type":"wrapper","func":"valueLooksCostumeNum"},{"type":"string","value":"8"}]}],"containers":[{"func":"blockControlWait","values":[{"type":"number","value":".05"}]}],"next":{"func":"blockControlWait","values":[{"type":"number","value":".5"}]}}}]}
  • {"func":"blockControlForever","containers":[{"func":"blockLooksNextCostume","next":{"func":"blockControlIf","values":[{"type":"wrapper","func":"valueOpLess","values":[{"type":"wrapper","func":"valueLooksCostumeNum"},{"type":"string","value":"9"}]}],"containers":[{"func":"blockControlWait","values":[{"type":"number","value":".05"}]}],"next":{"func":"blockControlWait","values":[{"type":"number","value":".5"}]}}}]}
  • {"func":"blockControlForever","containers":[{"func":"blockLooksNextCostume","next":{"func":"blockControlIf","values":[{"type":"wrapper","func":"valueOpEqual","values":[{"type":"wrapper","func":"valueLooksCostumeNum"},{"type":"string","value":"9"}]}],"containers":[{"func":"blockControlWait","values":[{"type":"number","value":".05"}]}],"next":{"func":"blockControlWait","values":[{"type":"number","value":".5"}]}}}]}
  • {"func":"blockControlForever","containers":[{"func":"blockLooksNextCostume","next":{"func":"blockControlIf","values":[{"type":"wrapper","func":"valueOpGreater","values":[{"type":"wrapper","func":"valueLooksCostumeNum"},{"type":"string","value":"9"}]}],"containers":[{"func":"blockControlWait","values":[{"type":"number","value":"0.5"}]}],"next":{"func":"blockControlWait","values":[{"type":"number","value":"0.05"}]}}}]}

9. When you use keyboard controls to animate an Actor, you don't need a "Forever" loop.

  • True
  • False

10. Which code blocks are used to animate the black hole Actor to turn forever?

  • {"func":"registerFlagTrigger","next":{"func":"blockPhysicsSetActive","values":[{"type":"boolean","value":"false"}],"next":{"func":"blockControlForever","containers":[{"func":"blockMotionTurnCCW","values":[{"type":"string","value":"5"}],"next":{"func":"blockControlWait","values":[{"type":"number","value":".05"}]}}]}}}
  • {"func":"registerFlagTrigger","next":{"func":"blockPhysicsSetActive","values":[{"type":"boolean","value":"false"}],"next":{"func":"blockControlRepeat","values":[{"type":"number","value":"10"}],"containers":[{"func":"blockMotionTurnCCW","values":[{"type":"string","value":"5"}],"next":{"func":"blockControlWait","values":[{"type":"number","value":".05"}]}}]}}}
  • {"func":"registerFlagTrigger","next":{"func":"blockPhysicsSetActive","values":[{"type":"boolean","value":"false"}],"next":{"func":"blockControlWhile","values":[{"type":"wrapper","func":"valuePhysicsIsActive"}],"containers":[{"func":"blockMotionTurnCCW","values":[{"type":"string","value":"5"}],"next":{"func":"blockControlWait","values":[{"type":"number","value":".05"}]}}]}}}
  • {"func":"registerFlagTrigger","next":{"func":"blockPhysicsSetActive","values":[{"type":"boolean","value":"false"}],"next":{"func":"blockControlRepeatUntil","values":[{"type":"wrapper","func":"valuePhysicsIsActive"}],"containers":[{"func":"blockMotionTurnCCW","values":[{"type":"string","value":"5"}],"next":{"func":"blockControlWait","values":[{"type":"number","value":".05"}]}}]}}}

U.S. Standards

  • CCSS-Math: 7.EE.B.4, MP.1, MP.2, MP.4, MP.7
  • CCSS-ELA: 6-8.RST.3, 6-8.RST.4, 6-8.RST.7, RI.9-10.3, RI.11-12.3
  • CSTA: 2-AP-11, 2-AP-12, 2-AP-13, 2-AP-15, 2-AP-16, 2-AP-17, 3A-AP-17, 3A-AP-22
  • CS CA: 6-8.AP.11, 6-8.AP.12, 6-8.AP.13, 6-8.AP.15, 6-8.AP.16, 6-8.AP.17, 9-12.AP.12, 9-12.AP.16
  • ISTE: 1.c, 1.d, 4.d, 5.c, 5.d, 6.b

U.K. Standards

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
Key stage 4
All pupils must have the opportunity to study aspects of information technology and computer science at sufficient depth to allow them to progress to higher levels of study or to a professional career. Pupils should be taught to:
  • develop their capability, creativity and knowledge in computer science, digital media and information technology
  • develop and apply their analytic, problem-solving, design, and computational thinking skills
  • understand how changes in technology affect safety, including new ways to protect their online privacy and identity, and how to report a range of concerns

Lesson 10: Double Jump

Course: | Web

  • Concepts
  • Learn to Jump
  • Learn to Double Jump
  • Jumpman
  • Create Your Own Side-Scroller Game
  • Quiz

Description

In this advanced lesson plan, students will be introduced to the physics library as they build Gravity Sling, a projectile game inspired by Angry Birds (TM). They define the behaviors of different kinds of projectiles and use physics commands such as impulse, gravity and collisions to build the game. Ninja Runner is an advanced physics platformer game with a boss fight sequence that challenges them to apply all the concepts and skills they have learned.

Students who successfully complete this lesson plan will demonstrate excellent understanding of a variety of programming concepts and computational thinking skills, and will be able to design and implement projects of moderate to advanced complexity.

Topics

  • List variables
  • Structured data
  • Loops
  • Advanced flow control
  • Physics attributes
  • Velocity
  • Impulses
  • Collisions
  • Sending and receiving messages
  • Parameters
  • Functions
  • Advanced conditional logic
  • Math
  • Boolean operators

What Students Learn

  • Build a complete projectile-based physics game
  • Build a complete platformer game using physics
  • Programmatically generate never-ending platforms
  • Program a hero with multiple actions and access them via keys
  • Use cloud variables and a list data structure to implement a leaderboard
  • Use variables to keep score and game speed
  • Program enemy A.I.

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.