Lesson 7: Conditionals Practice
45 minutes
Overview
In this lesson students spend most of their time practicing using the skills and processes they have learned about conditionals. At the conclusion of the lesson students discuss the main things they realized and still have questions about at the conclusion of this lesson.
Standards
AAP-2 - The way statements are sequenced and combined in a program determines the computed result. Programs incorporate iteration and selection constructs to represent repetition and make decisions to handle varied input values.
AAP-2.E - For relationships between two variables, expressions, or values: a. Represent using relational operators b. Evaluate expressions that use relational operators.
- AAP-2.E.2 - The exam reference sheet provides the following relational operators: =, ≠, >, <, ≥, and ≤. ● a = b● a ≠ b● a > b● a < b● a ≥ b● a ≤ b These are used to test the relationship between two variables, expressions, or values. A comparison using a relational operator evaluates to a Boolean value. For example, a = b evaluates to true if a and b are equal; otherwise, it evaluates to false.
AAP-2.F - For relationships between Boolean values: a. Represent using logical operators. b. Evaluate expressions that use logic operators.
- AAP-2.F.1 - The exam reference sheet provides the logical operators NOT, AND, and OR, which evaluate to a Boolean value.
- AAP-2.F.2 - The exam reference sheet provides the NOT condition, which evaluates to true if condition is false; otherwise it evaluates to false.
- AAP-2.F.3 - The exam reference sheet provides condition1 AND condition2, which evaluates to true if both condition1 and condition2 are true; otherwise it evaluates to false.
- AAP-2.F.4 - The exam reference sheet provides condition1 OR condition2, which evaluates to true if condition1 is true or if condition2 is true or if both condition1 and condition2 are true; otherwise it evaluates to false.
AAP-2.H - For selection: a. Represent using conditional statements. b. Determine the result of conditional statements.
- AAP-2.H.2 - The exam reference sheet providesIF(condition){<block of statements>}in which the code in block of statements is executed if the Boolean expression condition evaluates to true; no action is taken if condition evaluates to false.
- AAP-2.H.3 - The exam reference sheet providesIF(condition){ <first block of statements>}ELSE{ <second block of statements>}in which the code in first block of statements is executed if the Boolean expression condition evaluates to true; otherwise, the code in second block of statements is executed.
AAP-2.L - Compare multiple algorithms to determine if they yield the same side effect or result.
- AAP-2.L.3 - Some conditional statements can be written as equivalent Boolean expressions.
- AAP-2.L.4 - Some Boolean expressions can be written as equivalent conditional statements.
AAP-3 - Programmers break down problems into smaller and more manageable pieces. By creating procedures and leveraging parameters, programmers generalize processes that can be reused. Procedures allow programmers to draw upon existing code that has already been tested, allowing programmers to write programs more quickly and with more confidence.
AAP-3.A - For procedure calls: a. Write statements to call procedures. b. Determine the result or effect of a procedure call.
- AAP-3.A.9 - The exam reference sheet provides procedure INPUT(), which accepts a value from the user and returns the input value.
CRD-2 - Developers create and innovate using an iterative design process that is user-focused, that incorporates implementation/feedback cycles, and that leaves ample room for experimentation and risk-taking.
CRD-2.I - For errors in an algorithm or program: a. Identify the error. b. Correct the error.
- CRD-2.I.1 - A logic error is a mistake in the algorithm or program that causes it to behave incorrectly or unexpectedly.
- CRD-2.I.2 - A syntax error is a mistake in the program where the rules of the programming language are not followed.
- CRD-2.I.3 - A run-time error is a mistake in the program that occurs during the execution of a program. Programming languages define their own run-time errors.
- CRD-2.I.4 - An overflow error is an error that occurs when a computer attempts to handle a number that is outside of the defined range of values.
CRD-2.J - Identify inputs and corresponding expected output or behaviors that can be used to check the correctness of an algorithm or program.
- CRD-2.J.2 - Defined inputs used to test a program should demonstrate the different expected outcomes that are at or just beyond the extremes (minimum and maximum) of input data.
AP - Algorithms & Programming
- 2-AP-10 - Use flowcharts and/or pseudocode to address complex problems as algorithms.
- 2-AP-12 - Design and iteratively develop programs that combine control structures, including nested loops and compound conditionals.
Agenda
Objectives
Students will be able to:
- Debug programs that use boolean expressions and conditional statements
- Write programs that use boolean expressions and conditional statements with the support of sample code.
Preparation
- Review the programming challenges students will be completing
- Review the Debugging Guide for ideas on how to support your students during the lesson
- Check the "Teacher's Lounge" forum for verified teachers to find additional strategies or resources shared by fellow teachers
- If you are teaching virtually, consider checking our Virtual Lesson Modifications
Links
Heads Up! Please make a copy of any documents you plan to share with students.
For the teachers
- CSP Debugging Guide - Resource
- Conditionals Practice - Slides
- Guide to Practice Lessons - Video
Teaching Guide
Warm Up (5 minutes)
Quick Warm Up
Remarks
Today we're going to have a chance to practice programming with a lot of the concepts and patterns we've explored over the last two lessons. I encourage you to go through these with a partner, but pay close attention to what each other is doing. You will be choosing one of three apps to help develop today. While the design of each of these apps is complete, it will be your job to use your knowledge of conditional statements in order to make the apps function as intended.
Whichever app you choose, please continue to choose that same app on each of the choice levels. There are a total of four levels for each app.
In our next lesson you're going to have to use a lot of these skills on an independent project, and these activities are good practice for what you'll find there! Alright, let's get to it!
Move Quickly to the Activity: There's a lot in the main activity of today's lesson. You may optionally wish to do a quick vocabulary review or address any questions that came up in the last lesson. Otherwise, give students more time to get hands on with some code.
Activity (35 minutes)
Practice Time
Group: It is recommended that students work in pairs for this lesson. Consider using pair programming, having drivers and navigators switch every 3 minutes, not every level.
Do This: Direct students to Code Studio, Lesson 7 Level 1.
Create Performance Task Written Response Practice (Optional)
In order to help prepare students for the new component of the AP Create Performance Task, there will be several opportunities throughout the curriculum to practice creating written responses aligned with the learning objectives that might be assessed on the exam.
Create PT Learning Objective(s):
- Identify the error.
- Correct the error.
Unit Journal Template You may choose to reuse this debugging journal template if you think it will help support your students becoming stronger debuggers.
Sample Response for Instructors
Wrap Up (5 minutes)
Remarks
Conditionals can be a little bit tricky, but I saw a lot of good progress today in nailing down this concept. We may have a few lingering questions, but you also have a lot of resources available. Next time you'll have a chance to put all this together by programming an app that starts with "the blank screen"!
Create Perfomance Task Written Response Practice (Optional)
In order to help prepare students for the new component of the AP Create Performance Task, there will be several opportunities throughout the curriculum to practice creating written responses aligned with the learning objectives that might be assessed on the exam. This activity within the Unit Journal also practices the skill of snipping code segments in order to prepare a Personalized Project Reference for the Create Task.
Sample Prompt: Find a code segment where you have used logical operators and detail how the outcome of the segment would differ if the logical operations were reversed (i.e., AND changed to OR and vice versa).
Sample Response for Instructors
Assessment: Check For Understanding: AP Practice
Check For Understanding Question(s) and solutions can be found in each lesson on Code Studio. These questions can be used for an exit ticket.
Question: What will be displayed after this code segment is run?
Question: The program below asks a user to type in a number and then will output a message. What number will a user need to input for the message "COLD"
to be displayed?
number <- INPUT()
IF (number >= 10)
{
IF (number <= 20)
{
DISPLAY("MEDIUM")
}
ELSE
{
DISPLAY("HOT")
}
}
ELSE
{
DISPLAY("COLD")
}
This work is available under a Creative Commons License (CC BY-NC-SA 4.0).
If you are interested in licensing Code.org materials for commercial purposes contact us.