Coordinates
Booleans
Binary
Array
Mix
100

Top Left Corner

What is the origin (on micro:bit)?

100

Boolean variable namesake

Who is George Boole? 

100

A binary digit

What is a bit?

100

List or collection of similar things.

What is an array?

100

Repeatedly finding the maximum element (considering ascending order) from unsorted part and putting it at the end.

What is the selection sort? 

200

Increases top to bottom

What is the y coordinates? 

200

Three boolean operators

What are and, or, not 

200

8 bits

What is a byte?

200

A unique address or location in the collection.

What is an array index?

200

The array is searched sequentially and unsorted items are moved and put into the sorted sub-list (in the same array).

What is the insertion sort? 

300

x, y 

What is a coordinate pair? 

300

Checks whether a condition is true

What is a conditional or if . . . then?

300

13 in binary

What is 1101?

300

The total number of items in the collection.

What is the array length?

300

A container to hold data

What is a variable?
400

0-255

What is the brightness of the micro:bit LEDs?

400
Number of values a boolen can have

What are two or true / false?

400

1001 in base-10

What is 9?

400

Always 0

What is the first element in an array?

400

Allows a block of code to be executed a specified number of times

What is a loop?

500

Developed the coordinate system

Who is Rene Descartes?

500

Handle used to set the initial value of a variable 

What is on start? 

500

1024 bytes

What is a kilobyte?

500

Repeatedly steps through the array, compares adjacent elements and swaps them if they are in the wrong order.

What is a bubble sort?

500

This block runs the code as long as the condition inside of it is true.

What is the "while" block?