Lesson 8: Boolean Expressions and "if" Statements

Overview

In this lesson, students write if and if-else statements in JavaScript for the first time. The concepts of conditional execution should carry over from the previous lesson, leaving this lesson to get into the nitty gritty details of writing working code. Students will write code in a series of "toy" problems setup for them in App Lab that require students to do everything from debug common problems, write simple programs that output to the console, or implement the conditional logic into an existing app or game, like "Password Checker" or a simple Dice Game. The lesson ends with a problem requiring nested if statements to foreshadow the next lesson.

Purpose

The main purpose here is Practice, Practice, Practice. The lesson asks students to write if-statements in a variety of contexts and across a variety of program types and problem solving scenarios.

Agenda

View on Code Studio

Objectives

Students will be able to:

  • Write and test conditional expressions using comparison operations
  • Given an English description write code (if statements) to create desired program logic
  • Use the comparison operators (<, >, <=, >=, ==, !=) to implement decision logic in a program.
  • When given starting code add if, if-else, or nested if statements to express desired program logic

Preparation

Links

Heads Up! Please make a copy of any documents you plan to share with students.

For the Students

Vocabulary

  • Boolean - A single value of either TRUE or FALSE
  • Boolean Expression - in programming, an expression that evaluates to True or False.
  • Conditionals - Statements that only run when certain conditions are true.
  • If-Statement - The common programming structure that implements "conditional statements".
  • Selection - A generic term for a type of programming statement (usually an if-statement) that uses a Boolean condition to determine, or select, whether or not to run a certain block of statements.

Introduced Code

Teaching Guide

Getting Started (5 Minutes)

When vs. If

Teaching Tip

These are nuanced distinctions and may not be immediately clear to every student. As students gain more experience with if statements, the difference between events and if statements will likely become more clear. For now, they should at the very least understand there is a difference between the two and begin to get in the habit of asking whether they want to run a block of code based on a user action, a condition, or some combination of the two.

Remarks

In everyday conversation, it is common to interchange the words “when” and “if,” as in “If the user presses the button, execute this function.” The English language is tricky. We often say “if” the button is clicked when really we mean “when” a button is clicked. This can cause confusion because “if” has a well-defined meaning in programming.

How are conditionals (if statements) different from events?

Here is one way to think about it:

  • Events are setup by a programmer, but triggered by the computer at any momement in time.
  • If statements are a way a programmer can have her code make a decision during the normal flow of execution to do one thing or another.

As we have already seen in prior lessons, an if statement is evaluated when the code reaches a particular line and uses a true/false condition (like a comparison between values e.g., score == 5), to decide whether to execute a block of code.

Transition

  • As we begin to write event-driven programs with if-statements we need to be clear about what we mean, or what we intend our programs to do.
  • Sometimes when you say "if" you mean "when" and vice-versa. Just be on the lookout.

Optional: Flow Charts

Some people find flow-charting a useful exercise for thinking about if-statements.

Here is an optional activity: (Optional) Flowcharts - Activity Guide you can do with your students to warm up on paper.

Alternatively, you might revisit this activity after students have had some experience writing if-statements to solidify their understanding.

Activity (80 Minutes)

App Lab: Boolean expressions and if-statements

Transition to Code Studio

Students will use be introduced to conditionals by solving many different types of small puzzles and writing many small programs in different contexts with different kinds of output.

Read the student instructions and teacher commentary for more info.

Code Studio levels

  • Introduction to Conditionals: Boolean Expressions
  • (click tabs to see student view)
  • Boolean Expressions and Comparison Operators
  • (click tabs to see student view)
  • Comparison Operators Practice
  • (click tabs to see student view)
  • Introduction to Conditionals: if Statements
  • (click tabs to see student view)
  • Introduction to Conditionals: if-else Statements
  • (click tabs to see student view)

Wrap-up (10 Minutes)

Compare and Contrast - easy/hard

Discussion Goal

There are of course no right answers to these prompts. But it should be an opportunity for students give voice to new learnings or frustrations.

It's also an opportunity for you get insight about areas where your students are struggling, or things you might need to revisit.

Reflection Prompt:

  • "You've now had experience reasoning about if-statements on paper with the "Will it Crash?" activity, and now actually writing if-statements in working code. Compare and Contrast these experiences.

    • For "Will it Crash" - what was easy? what was hard?
    • For this lessson, writing if-statements - what was easy, what was hard?
    • If there was one thing you wish you understood better at this point, what would it be?

Nested if statements

Prompt:

  • "The last problem ("it's the weekend") was tricky. What made it hard? How did you end up solving it?"

Let students discuss for a moment and then bring to full class discussion. Points to raise:

  • What made it hard was that you needed to check more than one condition at the same time. You needed to say "it's saturday OR sunday". That's more than one condition to check.
  • So a solution (using only what we know so far) is to nest if-statements.
  • Nesting if statements is one way to check more than one condition at a time.

Transition

There are other ways to check more than one condition at a time that we will learn about in the next lesson.

Standards Alignment

View full course alignment

CSTA K-12 Computer Science Standards (2011)

CL - Collaboration
  • CL.L2:3 - Collaborate with peers, experts and others using collaborative practices such as pair programming, working in project teams and participating in-group active learning activities.
CPP - Computing Practice & Programming
  • CPP.L2:5 - Implement problem solutions using a programming language, including: looping behavior, conditional statements, logic, expressions, variables and functions.
CT - Computational Thinking
  • CT.L2:1 - Use the basic steps in algorithmic problem-solving to design solutions (e.g., problem statement and exploration, examination of sample instances, design, implementing a solution, testing and evaluation).
  • CT.L2:14 - Examine connections between elements of mathematics and computer science including binary numbers, logic, sets and functions.
  • CT.L2:3 - Define an algorithm as a sequence of instructions that can be processed by a computer.
  • CT.L2:6 - Describe and analyze a sequence of instructions being followed (e.g., describe a character’s behavior in a video game as driven by rules and algorithms).
  • CT.L2:8 - Use visual representations of problem states, structures and data (e.g., graphs, charts, network diagrams, flowcharts).

Computer Science Principles

4.1 - Algorithms are precise sequences of instructions for processes that can be executed by a computer and are implemented using programming languages.
4.1.1 - Develop an algorithm for implementation in a program. [P2]
  • 4.1.1A - Sequencing, selection, and iteration are building blocks of algorithms.
  • 4.1.1B - Sequencing is the application of each step of an algorithm in the order in which the statements are given.
  • 4.1.1C - Selection uses a Boolean condition to determine which of two parts of an algorithm is used.
5.5 - Programming uses mathematical and logical concepts.
5.5.1 - Employ appropriate mathematical and logical concepts in programming. [P1]
  • 5.5.1E - Logical concepts and Boolean algebra are fundamental to programming.
  • 5.5.1G - Intuitive and formal reasoning about program components using Boolean concepts helps in developing correct programs.

CSTA K-12 Computer Science Standards (2017)

AP - Algorithms & Programming
  • 2-AP-12 - Design and iteratively develop programs that combine control structures, including nested loops and compound conditionals.
  • 3A-AP-15 - Justify the selection of specific control structures when tradeoffs involve implementation, readability, and program performance and explain the benefits and drawbacks of choices made.