Elementary School course

Programming 101

  • GRADES 3-4
  • BEGINNER
  • WEB IPAD
  • 15 LESSONS
  • Voiceovers
Slide: 1 of 24

Answer Key

Module 4: The Marching Elephant

Module 6: Changing Scenes

Module 8: Keep the Knight Talking

Module 9: Color Codey

Module 11: The Magic Potion

Module 12: Quiz

1. Which of the following blocks is a conditional block?

  • {"func":"blockControlIf","values":[{"type":"boolean","value":""}],"containers":[null]}
  • {"func":"blockControlForever","containers":[null]}
  • {"func":"registerFlagTrigger"}
  • {"func":"blockMotionMove","values":[{"type":"number","value":""}]}

2. If {"type":"wrapper","func":"valueVar","name":"isMorning"} is true, what will the Actor with the following code say?
{"func":"blockControlIfElse","values":[{"type":"wrapper","func":"valueVar","name":"isMorning"}],"containers":[{"func":"blockLooksSay","values":[{"type":"string","value":"Hello"}]},{"func":"blockLooksSay","values":[{"type":"string","value":"Goodbye"}]}]}

  • Hello
  • Goodbye
  • Nothing
  • HelloGoodbye

3. True or False: Adding a conditional block inside a 'Forever' loop makes the program constantly check whatever's inside the conditional block. For example, in the code shown below, the statement {"type":"wrapper","func":"valueVar","name":"isOffStage"} is constantly checked.
{"func":"blockControlForever","containers":[{"func":"blockControlIf","values":[{"type":"wrapper","func":"valueVar","name":"isOffStage"}],"containers":[{"func":"blockMotionMove","values":[{"type":"number","value":"10"}]}]}]}

  • True
  • False

4. True or False: The value inside a conditional block must return either true or false.

  • True
  • False

5. What does the following code return?
{"type":"wrapper","func":"valueOpLess","values":[{"type":"string","value":"2"},{"type":"string","value":"10"}]}

  • True
  • False
  • 2
  • 10

6. Jenna has a program with a bunch of backgrounds that she switches through. She wants to do something when the 'SpecialScene' background appears. Which block should she use to figure out when this background is being shown?

  • {"func":"blockControlIf","values":[{"type":"wrapper","func":"valueOpEqual","values":[{"type":"wrapper","func":"valueLooksBackgroundName"},{"type":"string","value":"SpecialScene"}]}],"containers":[null]}
  • {"func":"blockControlIf","values":[{"type":"boolean","value":"true"}],"containers":[null]}
  • {"func":"blockControlIf","values":[{"type":"wrapper","func":"valueLooksIsHidden"}],"containers":[null]}
  • {"func":"blockLooksNextBackground"}

7. True or False: {"func":"blockControlWaitUntil","values":[{"type":"boolean","value":""}]} is a conditional block, not a loop block.

  • True
  • False

8. If {"type":"wrapper","func":"valueVar","name":"isCold"} is true, what will the Actor with the following code do?
{"func":"blockControlIf","values":[{"type":"wrapper","func":"valueVar","name":"isCold?"}],"containers":[{"func":"blockLooksSayFor","values":[{"type":"string","value":"Brrr!"},{"type":"number","value":"2"}]}],"next":{"func":"blockLooksSayFor","values":[{"type":"string","value":"Wow"},{"type":"number","value":"2"}]}}

  • The Actor will say "Brrr!" for 2 seconds then say "Wow" for 2 seconds
  • The Actor will only say "Brrr!" for 2 seconds
  • The Actor will only say "Wow" for 2 seconds
  • The Actor will not say anything

9. Which of the following is NOT a comparison operator?

  • {"type":"wrapper","func":"valueOpRandom","values":[{"type":"number","value":""},{"type":"number","value":""}]}
  • {"type":"wrapper","func":"valueOpLess","values":[{"type":"string","value":""},{"type":"string","value":""}]}
  • {"type":"wrapper","func":"valueOpGreater","values":[{"type":"string","value":""},{"type":"string","value":""}]}
  • {"type":"wrapper","func":"valueOpEqual","values":[{"type":"string","value":""},{"type":"string","value":""}]}

10. If {"type":"wrapper","func":"valueVar","name":"answer"} is false, what will the following code do?
{"func":"blockControlWaitUntil","values":[{"type":"wrapper","func":"valueVar","name":"answer"}]}

  • Keep waiting
  • Stop waiting
  • End the program
  • Make all Actors disappear

U.S. Standards

  • CCSS-Math: 3.NBT.A.2, 4.NBT.A.2, MP.1, MP.2, MP.4
  • CCSS-ELA: RF.3.4.A, RF.4.4.A
  • CSTA: 1B-AP-10, 1B-AP-11, 1B-AP-12, 1B-AP-15
  • CS CA: 3-5.AP.13, 3-5.AP.14, 3-5.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

Lesson 13: Adding Logic

Course: | iPad Web

  • A Rainy Day
  • Operators and Conditions
  • The Marching Elephant Example
  • The Marching Elephant
  • Changing Scenes Example
  • Changing Scenes
  • Keep the Knight Talking Example
  • Keep the Knight Talking
  • Color Codey
  • The Magic Potion Example
  • The Magic Potion
  • Quiz

Description

An easy introduction to programming for beginners in lower elementary grades. Familiarize your class with visual programming techniques. Students progress through the lessons learning concepts in a game-like interface. To complete each lesson, students typically go through a concept review, solve a puzzle, run through a tutorial, build their own project, and take a quiz. They create interactive stories, animations, and mini-games to help Professor Ada battle the evil Dr. Glitch! After completing this lesson plan, students will be able to build a wide variety of simple programs with events, loops, and some conditional logic.

Topics

  • Sequencing
  • Repetition
  • Events
  • Conditional logic
  • Animation
  • Pen drawing
  • Drawing shapes and patterns
  • Playing musical notes
  • Sending and receiving messages
  • Handling user input
  • Color detection

What Students Learn

  • Design animated characters
  • Create interactive scenes
  • Make animated birthday cards
  • Write cartoon stories
  • Create a music machine
  • Experiment with math art
  • Design and build small games
  • Troubleshoot and debug simple programs

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