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
A whole number that does not have a decimal or any digits after the decimal
What is an Integer
A text or character displayed by a program
What is a string
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
A joining together of separate items - without changing them - into one place
What is concatenation
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?
What is an argument?
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 ?
A programming statement that evaluates a true/false boolean expression to determine the next steps in a program
A conditional statement
Class type that defines what an item is or is not, such as integer, float, string or boolean.
What is data ?
A single entry of a list, can be different data types like an integer, float-point, string or boolean.
What is an element
An operator that compares values
What is an Equality Operator?
A control flow statement that allows a set of instructions to be executed repeatedly.
What is a for loop?
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
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
What is iteration ?
A collection of data values that do not have to be the same type
What is a list object
A function that is a member of a class
What is a method?
A mathematical operator that performs division but returns the remainder
Putting a function inside another function or a loop instead of another loop
What is a nested Function
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
Information or signals produced or delivered by a computer system.
What is an output
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
The value a computer returns after completing a function
What is a return value?
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