Please enable JavaScript to use CodeHS

Computer Science Explorations 1

Lesson 2.1 Quest for the Rosetta Stone

Description

In this lesson, students go through their third Karel Adventure story! In this story, students will help Karel travel to Egypt to find the Rosetta Stone. Along the way, students will review if/else statements and while loops, and they will learn about for loops, nested if statements, and choosing the best control structure.


Objective

Students will be able to:

  • Use if/else and if/else if/else statements to run code if a specific condition is either true or false
  • Use a nested if statement to check if multiple conditions are true
  • Use a while loop to repeat code as long as a condition is true
  • Use a for loop to repeat code a specific number of times
  • Create programs that use multiple control structures
  • Decide which control structures to use to solve a complex problem