The basics
Medium
Difficult
Challenging words
100

 a bug is a coding error in a computer program.

What is a bug?

100

constructs are features of a programming language, which perform different computations or actions depending on whether a programmer-specified boolean condition evaluates to true or false.

What is conditional code?

100

a symbol that tells the compiler or interpreter to perform specific mathematical, relational and produce final result.

What is logical operator?

100

a series of objects all of which are the same size and type in programming.

What is a array?

200

 A computer code introduced to a computer program to test for errors or to help determine the cause of an error

What is debugging?

200

A control flow statementthat allows code to be executed repeatedly based on a given Boolean condition.

What is while loop?

200

A computer procedure that is a lot like a recipe (called a procedure) and tells your computer precisely what steps to take to solve a problem or reach a goal.

What is algorithm?

200

A common method for keeping track of data so that it can be accessed quickly

What is index?

300

One of the three basic logic structures in computer programming.

What is sequence?

300

an instruction given by a user telling a computer to do something, such a run a single program or a group of linked programs

What is command?

300

a series of objects all of which are the same size and type.

What is array?

300

A formal argument, is a special kind of variable, used in a subroutine to refer to one of the pieces of data provided as input to the subroutine.

What is parameter?

400

a type of procedure or routine

What is function?

400

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

What is a variable?

400

an attribute of data which tells the compiler or interpreter how the programmer intends to use the data.

What is type?

400

the assignment of an initial value for a data object or variable

What is intialization?

500

Refers to creating computer programming code

What is coding?

500

features of a programming language, which perform different computations or actions depending on whether a programmer-specified boolean condition evaluates to true or false.

What is a condition?

500

a data type that has one of two possible values (usually denoted true and false),

What is Boolean?

500

informal high-level description of the operating principle of a computer program or other algorithm

What is pseudocode?