This is the step-by-step plan you create before writing code.
What is an outline?
This type of algorithm is used to arrange items in a specific order.
What is a sorting algorithm?
In Python, you use this symbol to assign a value to a variable.
What is "="?
This type of error happens when the code has incorrect syntax.
What is a syntax error or compile-time error?
The process of finding and fixing errors in your code is called this.
What is debugging?
True or False: An "if" statement can be used to make decisions in a program.
What is true?
In Python, you use this symbol to write a comment.
What is "#"?
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?
This programming concept refers to repeating a set of instructions until a condition is met.
What is a loop?
This structure helps programs make choices based on conditions.
What is conditional logic?
This punctuation is used to define a code block in Python.
What is ":"?
This is a tool can you use to step through your code line-by-line to inspect variables.
What is a debugger?
This is the term for converting code into a language the computer can execute.
What is compiling?
This structure repeats a block of code as long as a condition is true.
What is a while loop?
This symbol is used for exponentiation in Python.
What is "*"?
This website can be used to get help with any errors you may encounter while coding.
What is StackOverflow?
This term describes a mistake in the code that prevents the program from running correctly.
What is a bug?
This keyword in Python is used to stop a loop immediately.
What is break?
This is how you start a multi-line comment in Python.
What are triple quotes (''' or """)?
What can you do if your IDE doesn't have a built-in debugger?
What is use print statements?