Unit 1
Unit 2
Unit 3
Unit 4
Unit 5
100
What you'd type to increase x by 1, without using =

x++;

100

The colors in an RGB code

Red, green, blue

100

The symbol that tells JavaScript you're making a string

""

100
A collection of files on the Internet

World Wide Web

100

"and" in JavaScript.

&&

200

Breaking a larger task into smaller parts

Decomposition or top-down design

200
8 bits

Byte

200

An operator that finds the remainder of division.

%

200

A set of computing devices working together

Computing system

200

The outcome of 2 <= 5

true

300

If x = 6, the output of:

if(x > 10){

print("*");

}else{

print("-");

-
300

Compression that can't be reversed

Lossy compression

300

The operation used in 2 ** 4.

exponent

300

This identifier for systems and networks uses hexadecimal.

IPv6

300

An operator that makes true statements false, and false statements true.

not !
400

If x is 7, the output of:

while(x > 3){

print("*");

x--;

print("*");

********

400

This binary number in hex: 1011

B

400

5.5 and -2.0 are examples of this data type.

float

400

The rules computers follow to send and receive data.

HyperText Transfer Protocol

400

The outcome of 1 > 3 && 1 > 7

false

500

The output of:

for(let i = 0; i < 2; i++){

for(let j = 5; j > 2; j--){

print("*")

******

500

This hex number in decimal: A8

168

500

The default size of our canvas.

400x400 pixels

500

A network with 4 computers and 6 connections.

Fully connected network

500

The outcome of !(6 < 3 || 6 > 10)

true