Lists, Loops, and Traversals - Lesson 12: Traversals Make

Overview

Using Programming Patterns and a step-by-step approach students make their own version of a Random Forecaster app. At the beginning of the lesson students are able to explore a working version of the app. They are then given the design elements of the app but begin with a blank screen. Students use an Activity Guide to go through the high level steps they should use to develop their app but leaves it to them to decide how to write the code. At the end students submit their apps which can be assessed using a provided rubric.

Goals

Students will be able to:

  • Recognize the need for programming patterns with traversals as part of developing a functioning app
  • Implement programming patterns with traversals to develop a functioning app
  • Write comments to clearly explain both the purpose and function of different segments of code within an app
  • Use debugging skills as part of developing an app

Purpose

This lesson is an opportunity for students to take on the "blank screen" and build the code that runs an app entirely from scratch. Guidance provided throughout the lesson helps students break down the large task of "building an app" into more incremental steps that they can use on future projects, including this unit's final project and the Create PT.

Resources

Supplemental Code.org material

Getting Started (2 minutes)

Intro the Project

  • For the past few days, we've learned a lot about using traversals to make apps that manipulate large amounts of information. In today's Make Project you'll be practicing processing lists and using programming patterns with traversals to create a functioning Random Forecaster app.
Teaching Tip

Short Intro: The Warm Up today is short and light. Students should spend the maximum amount of time working on their projects.

Activity (38 minutes)

Try the Random Forecaster App

Group: Make a determination as to whether this project will be completed in pairs or individually. You may even choose to let students decide.

Open a Project: Have students explore the working Random Forecaster app in the Lesson12_ExampleApp project. Students shouldn't inspect the code of the example app at this point.

Do This:

  • Click on Get Forecast
  • Click the button several times to see how the display changes.

Prompt: If students are not working in pairs they should still discuss these prompts with a neighbor:

  • What information is needed to create this app?
  • What list filtering patterns might be used?
Discussion Goal
  • What information is needed to create this app?
    • The weather forecast for a specific date for random cities, including the weather condition, high and low temperatures, and a weather icon.
  • What list filtering patterns might be used?
    • The List Filter Pattern: Filtering Multiple Lists is used.

Make the Random Forecaster App

  • Now let's build this app. The screen has been set up for you - it's your job to add the code!

Do This: Direct students to open the Lesson12_ProjectTemplate project where they complete the Random Forecaster app. An optional Activity Guide is provided if students would like guidance in creating the app. You may also choose to quickly review the List Filter Pattern: Filtering Multiple Lists pattern with students, if needed.

Submit: Encourage students to check the rubric on the last page of the Activity Guide before submitting.

Teaching Tip

Supporting Students: While students are working on their apps, circulate the room and check in with students who need a little help. Encourage students to collaborate and discuss bugs with each other.

Debugging: Review with students steps they can use to debug if they get stuck:

  • Use the output command to log the value of variables to the console
  • Explain the code to a friend

Looking at Previous Code: You can choose to let students look at code from apps in previous lessons as a reference if they're stuck. You can also use the code in the example project, but it's important that students don't just copy-paste from it. Looking at related code as a reference and translating it into new code is a valuable programming skill, but it's important that students are confident enough in their understanding of the material to build code in the blank slate environment. They will need this skill for the upcoming projects.

Wrap Up (5 minutes)

Remarks

  • Awesome work today! Make sure to submit your project when you're done with it!
Teaching Tip

Maximize Work Time: The wrap up is short to allow the maximum amount of time for students to complete the activity.

Assessment: Make Project

Use the rubric provided with the project to assess student projects.

Standards Alignment

  • CSTA K-12 Computer Science Standards (2017): 3A-AP-14, 3B-AP-10

Next Tutorial

In the next tutorial, we will discuss Code.Org Unit 5 Lesson 13, which describes Start the unit project.