Data
Binary
The Internet
Networking
Coding
100

It is how a computer internally represents data

binary

100

It is the smallest piece of data.

Bit

100

It is the name of what the internet grew out off

ARPANET

100

The units that data is broken up into when sending something on a network

What are packets

100

When programming, it is used to store a value

What is a variable

200

It's what happens when a computer stores a number larger than it has space for 

Overflow

200

It is a grouping of eight bits

Byte

200

It is the unique identifier of a computer on the internet

What is IP (or Internet Protocol)

200

The protocol that tries to guarantee all packets will get to a recipient

What is TCP

200

It's the code to increase a variable called score by 1

what is
score = score +1
or
score ← score + 1

300
It defines the numeric representation of text (like the letter 'A')

ASCII

300

In decimal (base ten), it would be the number 2

What is the decimal (base ten) value of binary 10

300

It is the system that matches a textual name to an IP address.

What is DNS

300

It is the protocol used  for sending packets quickly, but without a guarantee that all packets will be received.

What is UDP?

300

score ← score * 2

What's the code to double a variable called score

400

When digitizing an image, if you have more of these, your image will be more detailed

Samples

400

15 is the largest value that they can store

What is the maximum value that four bits can hold?

400

It is the protocol used to request data from a website

What is HTTP

400

192.186.1.20 is an example of one of these

What is an IP address

400

A local variable is an example of this term

What is scope

500

They are the two techniques used to reduce the amount of data needed to represent something.

Lossless and Lossy compression

500

It is the minimum number of bits needed to store the number 20 in decimal (base ten).

what is 5

500

It is the term used to describe why there are many routes to a device on the internet.

What is redundancy or fault-tolerance?

500

It is the part of a packet that defines where it's going, where it's from, and how it fits into other packets.

What is metadata?

500

It is the term combining strings

what is concatenation