This character denotes the division operator.
What is the forward slash (/) ?
This often used statement checks the validity of a statement before creating a branch.
What is an 'if' statement?
These characters have the highest order of operation in Python.
What are parenthesis?
The program is syntactically correct and runs without crashing, but it produces the wrong result. What type of error is this?
What is a semantic error?
What is False?
List all boolean operations.
What is 'not', 'and', 'not', and '^'?
The result of 9 // 5
What is 1?
This function allows user input text to be assigned to a variable.
What is input()?
This process focuses on implementing a large, complex software problem in small increments.
What is incremental development?
What is the output?
What is 40?
A related block of statements that are executed when this is used/executed
What is a function?
The process that many professional developers write code in. Hint: The implementation of this process in your assignments is required.
What is Test Driven Development?
Name all relational operators
What is ==, !=, <, <=, > and >=?
The process of converting a variable from one type to a different type.
What is casting?
What will be the result of the following operations?
What is True?