Programming Basics
Algorithms and Logic
Python Syntax
Debugging
100

This is the step-by-step plan you create before writing code.

What is an outline?

100

This type of algorithm is used to arrange items in a specific order.

What is a sorting algorithm?

100

In Python, you use this symbol to assign a value to a variable.

What is "="?

100

This type of error happens when the code has incorrect syntax.

What is a syntax error or compile-time error?

200

The process of finding and fixing errors in your code is called this.

What is debugging?

200

True or False: An "if" statement can be used to make decisions in a program.

What is true?

200

In Python, you use this symbol to write a comment. 

What is "#"?

200

This is an error that occurs while your program is running. For example, this error may happen in a loop.

What is a runtime error?

300

This programming concept refers to repeating a set of instructions until a condition is met.

What is a loop?

300

This structure helps programs make choices based on conditions.

What is conditional logic?

300

This punctuation is used to define a code block in Python.

What is ":"?

300

This is a tool can you use to step through your code line-by-line to inspect variables.

What is a debugger?

400

This is the term for converting code into a language the computer can execute.

What is compiling?

400

This structure repeats a block of code as long as a condition is true.

What is a while loop?

400

This symbol is used for exponentiation in Python.

What is "*"?

400

This website can be used to get help with any errors you may encounter while coding.

What is StackOverflow?

500

This term describes a mistake in the code that prevents the program from running correctly.

What is a bug?

500

This keyword in Python is used to stop a loop immediately.

What is break?

500

This is how you start a multi-line comment in Python.

What are triple quotes (''' or """)?

500

What can you do if your IDE doesn't have a built-in debugger?

What is use print statements?

M
e
n
u