Making Decisions

Lesson P.3 - Making Decisions

Computers make decisions by asking questions much like we do, but loads faster.

In this lesson you will learn to about comparisons and branching to make decisions in your code.

Objectives:

  • identify and use symbols used in comparisons

  • write expressions that run when a certain condition is met

Challenge:

Write a program that decides if a child can ride a roller coaster based on their age and height. Use variables, comparisons, and multiple branching in your solution.

CC - Lesson P.3 - Making Decisions

Practice - Making Decisions with Code