A
B
C
D
E
100

the order in which the commands are given

sequence

100

a symbol or word like "and," "or," and "not" that connects two or more Booleans to make conditional decisions more specific

logical operator

100

runs a block of code over and over for a set number of times

for loop

100

a specific action for the computer to perform

command

100

people who write code to build their own apps and games

developers

200

The process of combining small parts of a program to solve a larger problem

composition

200

a block of code that will run only if something is true.

conditional code

200

a collection of commands grouped together and given a name.

function

200

telling a computer what to do

coding

200

an error in your code

bug

300

A loop that runs a block of code as long as a given condition is true. When the condition is false, the loop stops running.

while loop

300

a step-by-step set of rules or instruction

algorithm

300

(text): stores a series for characters, such as "Hello world!"

string

300

(numbers): stores an integer - a number that has no decimal, such as 10 or -42

int

300

(true or false): stores a value of either true or false

bool

400

extra information that gets passed to a function

parameter

400

an informal description of code or a concept that's intended for human reading

pseudocode

400

the rules for writing code that computers can understand and run

syntax

400

a named container that stores a value that can't be changed

constant

400

a symbol such as ==, !=, <, >, <=, or >=, used to compare two values

comparison operator

500

a named container that stores a value. The value can change over time.

variable

500

a named grouping of properties (the features) and methods (the behaviors) of a kind of data

type

500

the act of creating a new instance of a type, which includes setting initial values for any properties of the type.

initialization

500

a collection that stores an ordered list of items

array

500

the number that represents the position of an item in an array

index