The basics
Simple words
Outliers
Weird words
100

Assigning a code to something to make it do a certain action.

What is coding?

100

Placing Human Readable Descriptions inside of computer programs detailing what the Code is doing

What is commenting?

100

Repeat a set of commands over and over again until it meets certain criteria - “looping”

What is iteration?

100

The grammar rules of a computer language

What is syntax?

200

A fault or error in code.

What is a bug?

200

A value that can change, depending on conditions or on information moved to the program.

What is a variable?

200

A special symbol or word (AND, OR, NOT) which connects two or more phrases of information.

What is a logical operation?

200

Steps and instructions that lets the computer solve an problem.

What is algorithm?

300

When a coder finds and eliminates bugs in a code.

What is debug or debugging?

300

Word rules for variables and functions, etc.

What is naming convention?

300

Check a value to determine to call one command or another; tree-like term

What is branching?

300

A notation similar to a simplified programming language, used in program design

What is a pseudo code?

400

An instruction given by the coder to do something.

What is a command?

400

Going through your code on paper, probably using a data table, to check the logic and the output.

What is desk-checking?

400

Two or more lowercase words connected by an underscore is referred to as this.

What is snake_case?

400

Something that can have binary possible values

What is a Boolean?

500

A section of code that is named and does a task in coding

What is a function?

500

An approach to program design that starts with the general concept and repeatedly breaks it down into its component parts.

What is top-down design?

500

The placing of a value into a data object aka. a variable using the = sign.

What is assignment?

500

Adding two strings together is called this.

What is concatenation?