Unit 2 - Karel
Unit 4 - Computing
Unit 5 - Digital Information
Unit 6 - JavaScript
100

The Karel command that makes Karel move forward one space.

What is move();?

100

A keyboard or mouse are examples of this device.

What is an input device?

100

The number system with two digits (0 and 1).

What is binary?

100

The keyword to declare a variable.

What is var?

200

A loop that runs a fixed number of times.

What is a for loop?

200

A monitor or speaker are examples of this device.

What is an output device?

200

The color represented by the RGB value #0000FF.

What is blue?

200

The function to print to console (the screen).

What is println()?

300

A statement to choose between two instructions based on a condition.

What is an if/else statement?

300

The computer's fundamental software that manages its hardware and system resources.

What is the operating system?

300

The hexadecimal value A16 in decimal representation.

What is 10 (ten)?

300

The function to prompt for user input of the type string.

What is readLine()?

400

A predefined block of code that you name and reuse to perform a specific task.

What is a function?

400

The main circuit board that connects together all the main components of the computer.

What is the motherboard?

400

The maximum (decimal) number that can be represented with 8 bits.

What is 25510?

400

The arithmetic operator that gives the remainder after division.

What is modulo (%)?

500

The code snippet that makes Karel pick up all balls at a location.

What is while(ballsPresent()){takeBall();}?

500

A temporary memory used for faster calculations while programs are running, and is erased when the computer powers off.

What is RAM?

500

The decimal value 6710 in binary representation.

What is 10000112?

500

The dual purpose of the + operator.

What is string concatenation and addition?