trace the code
Loop logic
If else reasoning
Debug the idea
Vocabulary and concepts
100

What is the purpose of a loop?


What is To repeat  instructions 

100

What does an if statement do?


What is to Makes decision

100
What is a bug

A mistake in code


100

What is code?



Instructions for a computer


200

What prints? x=3; x=x+4; print(x)


What is 7

200

How many times does this run? for i in range(5)


What is 5

200

What prints?x=10if x>5: print("High")


What is high

200

What is wrong with: print("Hello


Missing closing quotation mark


200

What is a variable used for?


To store and reuse data


300

What prints? x=2; x=x*3; x=x-1; print(x)


What is 5

300

What prints?for i in range(1,4): print(i)


1

2

3

300

What prints?x=4if x>5: print("A") else: print("B")


What is b

300

What needs to be fixed?if x > 3print(x)


Missing colon :


300

What is an algorithm?


Step-by-step instructions to solve a problem


M
e
n
u