This is giving a computer a set of instructions to execute.
What is Programming?
This is a sequence of instructions that performs a specific task, packaged as a unit.
What is a Function?
Fill in the blank. You can access an item in a list by using its _________ position.
Index
The mathematical study of what could potentially happen.
What is Probability?
Fun fact: the study of probability came about as a method to decode secret messages.
Refers to the actual network of connected computing devices.
What is the Internet?
This is a way of saving a piece of information with a specific name. These allow us to store information, quickly reuse a value in our program, and easily change a value in our program.
What is a Variable?
Fill in the blank. When we __________ a function, we specify the instructions, inputs, and name of the function.
Define
This is a structure in programming where the instructions are written once, but a computer can execute them multiple times.
What is a loop?
A step-by-step solution to a general type of problem.
What is an Algorithm?
A collection of interlinked websites and other web resources.
What is the World Wide Web?
These tell us about the data, including how it can be stored and what types of operations we can perform.
What are Data Types?
Fill in the blank. When we _______ a function, all of its instructions are executed.
Call
These are formats that we can use to keep track of our data in an organized fashion.
What are Data structures?
When you need to perform the same operation on every item in a list
What is Iteration?
The device or program in a given network that waits for incoming requests and sends back data.
What is a Server?
Symbols that represent different ways of modifying, comparing, and evaluating information.
What are Operators?
(Arithmetic, Comparison, Logical)
This is the order in which instructions are executed.
What is Control flow?
This type of loop is also called a count controlled loop. It is used when you know the number of times you want to execute a set of instructions.
What is a For Loop?
"Explore the Data" is a step in this process.
What is the Data Science Process?
*The Scientific Method is also acceptable
*Note: Data Science follows the scientific method
- Ask a question
- Determine the necessary data
- Get the data
- Explore the data
- Model the data
- Communicate your findings
Refers to the user's device or program that is making a request for data
What is a Client?
*A client can be a browser or application running on a user’s laptop, smartphone, or tablet
When we use a value without assigning it to a variable, this is known as...
What is hardcoding?
These alter control flow in a program. You learned three of these, each suited for a different scenario.
What are Control structures?
A condition controlled loop is also called this.
What is While Loop?
*It repeats a set of instructions while that condition is true
Commonly defined as the extraction of relevant information from a larger data set. It allows engineers and others to simplify a codebase.
What is Abstraction?
In HTML, this provides additional information about an HTML element
What is an Attribute?
*It comes in the form of a name + value pair with the structure name='value'
*For example, you can specify the width of an HTML element with the attribute width='500'