Binary Numbers
Digital Information
The Internet
2D Arrays
Random Tech Trivia
100
This number is 10 in binary.

2

100

How many bits are in a byte?

8 bits

100

What kind of requests do client computers make to get information from servers?

Acceptable answers: HTTP requests, GET requests, POST requests

100

Write on a whiteboard the data type for a 2D array of Ints.

[[Int]]

100

What other programming language is JavaScript named after?

Java

200

This number is 100 in binary.

4

200

What are the three different color values that create on single digital color on a computer?

Red, green, blue color values

200

The internet is not a centralized network, but a _________ network.

distributed

200

Name one use for a 2D array.

Acceptable answers include:

  • Images

  • Data tables

  • Grids (seating charts)

  • Game boards

200

What startup, acquired by Facebook for $1 billion in 2012, became the fourth most downloaded app in the 2010s and is known for the posting of pictures?

Instagram
300

This number is 101 in binary.

5

300

What is the name of the code where each character corresponds to a different number? (Just the abbreviation is fine)

ASCII (American Standard Code for Information Interchange)

300

What is the name of the system that resolves domain names (e.g. google.com) to IP addresses?

DNS (Domain Name System)

300

Write on a whiteboard how would you initialize an empty 2D array of Ints (stored in a variable called arr).

let arr = [[Int]]()

OR

var arr = [[Int]]()

300

Which American tech company started with its founders' idea to rent out an air mattress in their San Francisco living room to travelers hoping to avoid the city's high cost of rent?

Airbnb

400

This number is 1100 in binary.

12

400

How many different values can be stored in a byte?

0 --> 255 = 256 different values

400

What is the name for the small pieces of data that are broken down and sent over the internet?

Packets

400

Write on a whiteboard how you would access the first subarray (row) of numbers in a 2D array of Ints called numbers.

numbers[0]

400

What computer was introduced in 1984 Super Bowl ads?

Apple's Macintosh

500

This number is 1111 in binary.

15

500

What is the type of image compression where the image loses some data?

Lossy image compression

500

What is the name of the protocol that handles the sending and receipt of packets?

TCP/IP (Transmission Control Protocol/Internet Protocol)

500

Write on a whiteboard how you would access the first number (think: upper left hand corner number) in a 2D array of Ints called numbers.

numbers[0][0]

500

Name at least ONE of the two browsers involved in the web's first browser war in the 1990s.

Microsoft's Internet Explorer, Netscape's Navigator

M
e
n
u