This coding concept works by using a step-by-step order of instructions to solve a problem
What is an algorithm?
This is a tool that allows humans to communicate with computers
What is a coding language?
Examples of this are text-based and visual-based
What are types of coding languages?
This tells the computer to repeat an action until a condition is met
What is a loop?
This is known as a symbol that holds information
What is a variable?
This tells the computer what kind of information can be stored in a variable
What is a data type?
This type of loop is best for situations where we know how many times we want the loop to iterate
This data type includes all negative and positive whole numbers
What is an integer?
This type of loop is best for situations where we don't know how many times we want the loop to iterate
What is a while-loop?
This data type only has two possible values- true or false
What is a boolean?
This data type includes all negative and positive numbers with decimal points
What is a float?
This data type is used to represent any sequence of characters, and is usually enclosed in double quotes
What is a string?