Location or space in your computer's RAM memory
What is a variable?
Element or section of an IPO diagram to list all the elements I need to solve a problem
Input
A variable name can begin with a number
False
What keyword starts a conditional statement?
If
What keyword starts a for loop?
for
What is the function to get user data from the keyboard?
input()
What operator gives the remainder of a division?
The % operator
These are the 3 elements included in a program header
Author
Date
Description
What keyword is used for the alternative condition?
else
What function creates a sequence from 0 to n-1?
range(n)
Operator(s) that can add more elements besides text to the print() function
The , or the + (concatenate operator)
What does the ** operator do?
Exponentiation (raises to a power)
Text, code. We can also include the output
What keyword checks an additional condition after if?
elif
Name the 3 elements that control the range() function in a for loop
(start, stop, step)
Variables in programming languages allow you to store different values; these values are known as
conditions (if) and loops (for)
What operator checks if two values are equal?
The == operator
What symbol must appear at the end of an if statement line?
: (colon)
What keyword exits a loop prematurely?
break
What keyword is used to import a module in Python?
import
What operator is used for floor division (division without remainder)?
The //
How do you convert the string '42' to an integer?
int('42')
What operators combine multiple conditions? (Name two)
and, or (also: not)
What keyword skips to the next iteration of a loop?
continue