Skip to content

Scratch Programming · Week 6

Boolean Statements

Step 1 of 5

Lesson 6: Boolean Statements and Operators in Scratch

What You'll Learn

In this lesson, we'll explore Boolean statements and operators in Scratch. You'll learn how to use logical operators to create complex conditions and make decisions in your code.

Key Concepts

Boolean

A data type that can only have two possible values: true or false.

Logical Operators

Operators that work with Boolean values to create complex conditions.

Comparison Operators

Operators that compare two values and return a Boolean result.

Arithmetic Operators

Operators that perform mathematical calculations on numerical values.

Blocks We'll Use

Operators Blocks

  • and
  • or
  • not
  • < (less than)
  • > (greater than)
  • = (equal to)

Arithmetic Blocks

  • + (addition)
  • - (subtraction)
  • * (multiplication)
  • / (division)