An event is an action (such as clicking the mouse or pressing a key on the keyboard) that a program detects and uses as input.
A function passed as a parameter to another function in order to be called later.
A True or False value
The process of converting the value of one data type (integer, string, float, etc.) to another data type is called type conversion.
Used to make logical associations between boolean values.
Used to make comparisons between values.
An if statement lets you ask a question to the program and only run code if the answer is true.
Executes code only if all conditions are false
sequential programming refers to programs that are executed sequentially – once through, from start to finish, without other processing executing.
Non-sequential Programming refers to a programming paradigm where programs can have multiple tasks being completed at once or out of sequential order.
A for loop lets us repeat code a **fixed number of times.**
A for loop lets us repeat code a **fixed number of times.**
Not actually random, but appears to be random
Lets us repeat code as long as something is true.
Exits the current loop and resumes execution at the next statement.
Rejects all the remaining statements in the current iteration of the loop and moves the control back to the top of the loop to continue to the next iteration. Can be used in both while and for loops.
Control structure that lets us run either one section of code or another depending on a test.