Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

Engineering Cycle Worksheet

Name: Level #: Level Name:

1. DECOMPOSE
1. Assess the problem
the problem 2. PLAN
2. Design a solution
a solution
What is the problem that you’re solving in this level? How should your algorithm solve the problem?
What smaller problems can you break it into? Plan your solution in plain English or pseudocode
using a list or a flowchart.
Big Goal:
To win this level, my hero has to ... # First, I have to ...

Subgoals:
Along the way, my hero has to ...

# Then I have to ...

Based on your understanding of the problem, make an


educated guess about which concepts you’ll use.

Coding Concepts:
# (Continue as needed)

3. IMPLEMENT
3. Implement the
the solution
design 4. TESTand
4. Debug and DEBUG the code
run!
Translate your solution into real code! Hit “run” to see if your code does what you intended!
Use APIs and your existing knowledge of syntax. Make sure to triple-check spelling, syntax and structure.
Write it here first, or type it straight into the editor!

1 Code works as intended


Everything is spelled correctly
2
Lines are properly indented
3
Parentheses (), brackets [], or braces {} are correct
4
Capitalization is correct
5 Variables are defined before I use them
6 _____________________________________
7 _____________________________________

8 _____________________________________

10

11

12

You might also like