Meaning 1
Meaning 2
Meaning 3
Meaning 4
Meaning 5
100

One of two values, such as true or false, allows a computer to know what step in the conditional statement process to execute next 

What is a boolean variable 

100

A whole number that does not have a decimal or any digits after the decimal 

What is an Integer 

100

A text or character displayed by a program 

What is a string 

100

A type of number (number type that provides very precise information by including all the numbers after the decimal. 

What is a float-point number 

100

A joining together of separate items - without changing them - into one place 

What is concatenation 

200

A symbol in code that assigns values from the right side of an equation (an operand) to what is on the left side of the equation. 

What is an assignment operator? 

200
The values that a program provides to a function or subroutine. 

What is an argument? 

200

A template for creating objects. A grouping of functions an associated data into a cohesive unit. Specifies the methods and attributes (properties) that are related to an object. 

What is a class ? 

200

A programming statement that evaluates a true/false boolean expression to determine the next steps in a program

A conditional statement

200

Class type that defines what an item is or is not, such as integer, float, string or boolean. 

What is data ?

300

A single entry of a list, can be different data types like an integer, float-point, string or boolean. 

What is an element

300

An operator that compares values 

What is an Equality Operator? 

300

A control flow statement that allows a set of instructions to be executed repeatedly. 

What is a for loop? 

300

A name section of a program that performs a specific task. A block of organized and reusable code that performs a single action. 

What is a function 

300

A specific location by order for an individual element in a list. The position of an item in a list. The first one is represented by 0 

What is an index 

400
Process of repeating a set of instructions a specified number of times or until a condition is met, such as in a repetition of a process or a newer version of development in computer science. 

What is iteration ? 

400

A collection of data values that do not have to be the same type

What is a list object 

400

A function that is a member of a class 

What is a method? 

400

A mathematical operator that performs division but returns the remainder 

What is a modulo? 
400

Putting a function inside another function or a loop instead of another loop 

What is a nested Function 

500

A style of programming language that focuses on creating reusable patterns of code, in contrast to procedural programming, which focuses on explicit, sequenced instructions. 

What is object-oriented prorgamming 

500

Information or signals  produced or delivered by a computer system. 

What is an output 

500

A function that identifies a number to start at, a number to stop at, and how much to change by each time the program executes the loop. the function will loop as many times as necessary until it gets to the end value. 

What is a range loop/ funciton 

500

The value a computer returns after completing a function 

What is a return value? 

500

A control flow statement is a repeating if statement. The loop will continue to execute indefinitely for as long as the condition being evaluated is true. 

What is a while loop