What is python?
What is a programming language?
This data type represents whole numbers
What is an integer?
This feature in python allows you to store and manipulate data types
What are variables?
Give an example of a char
This command is used to display output
What is a print statement?
This data type represents decimals
What is a float?
This variable remains unchanged through the program's execution
What is a constant variable?
A string is this
What is a sequence of characters?
In programming, this refers to a set of rules and structure
What is syntax?
This division rounds down to the nearest whole number
What is floor division?
A constant variable is represented through...
What are capital letters?
Char represents this
Why are comments commonly used in programming?
What is for documentation and explanation?
The percent sign is a symbol for this type of division
What is modular division?
Which naming convention is separated through underscores?
What is snake case?
The position of an item within a string is known as..
What is an index?
These are two types of errors
What are syntax and logic errors?
Normal division always results in this data type
What is a float?
How do you identify camel case?
What is the first word capitalized in a variable name with the rest lowercase?
These symbol(s) are used to combine strings
What is "plus" and "comma"