Grand Challenge

Bring it all together


Year 7 Computer Science — Synthesis

The Challenge

Write an algorithm to navigate from START to EXIT through the maze.

📏 Max 20 lines — including lines inside loops
🔁 Must use at least one REPEAT loop
❓ Must use at least one IF/ELSE
🤖 Must be peer-testable — another pair will follow it as a robot

Study the Maze


Mark your planned route on the planning sketch. Then write!

Write Your Algorithm

Use proper notation:

REPEAT 4 TIMES { move right }
IF key = True:
    enter gate
ELSE:
    find alternate route

Count your lines! Stay within 20.

SWAP!

Peer Testing

Give your sheet to another pair. They are your robots.

Feedback & Revision

Get your sheet back. Read the peer test results.

Write your fix in the Author's Response section.

Reflection

Key Takeaway

Real programs combine all concepts — algorithms, variables, loops, and conditionals work together.

Writing correct, efficient solutions requires planning, testing, and revision.

That's software development.
1 / 8