What is the purpose of a loop?
What is To repeat instructions
What does an if statement do?
What is to Makes decision
A mistake in code
What is code?
Instructions for a computer
What prints? x=3; x=x+4; print(x)
What is 7
How many times does this run? for i in range(5)
What is 5
What prints?x=10if x>5: print("High")
What is high
What is wrong with: print("Hello
Missing closing quotation mark
What is a variable used for?
To store and reuse data
What prints? x=2; x=x*3; x=x-1; print(x)
What is 5
What prints?for i in range(1,4): print(i)
1
2
3
What prints?x=4if x>5: print("A") else: print("B")
What is b
What needs to be fixed?if x > 3print(x)
Missing colon :
What is an algorithm?
Step-by-step instructions to solve a problem