The Internet
There's math in computer science?
Algorithms
It's all just bits
Let's Code
Random
100

The unique address given to each computer device.


What is IP address?

100

DISPLAY (20 mod 4) + 3

What is 3?

100

The image shows an example of this structure. (Sequencing, Selection, or Iteration)

What is iteration?

100

This is the name for the base 2 number system.

What is binary?

100

This is the maximum possible value of ans. 

What is 16?

100

This is the food group of a tomato. 

What is fruit?

200

Differing access to computing devices and the Internet, based on socioeconomic, geographic, or demographic characteristics

What is the digital divide?

200

___ distinct, total numbers can be represented with 8 bits.

What is 256?

200

Only being concerned with the main idea and ignoring details of a function or procedure.  

What is (procedural) abstraction?

200

A text-editing application uses binary sequences to represent each of 100 different characters. What is the minimum number of bits needed to assign a unique bit sequence to each of the possible characters?

What is 7 bits?

200

These are the contents of yourList after this code segment is executed. 

What is [10, 30, 50, 70]?

200

This would be your tip if you tipped 20% on a $15 bill. 

What is $3.00?

300

This is the protocol for sending packets across the Internet that does error-checking to ensure all packets are received and properly ordered.

What is Transmission Control Protocol (TCP)?

300

This is decimal number 37 in binary. 

What is 0010 0101?

300

Using an algorithm to find a "good enough" solution. Most generally used when finding the best solution takes unreasonable time. For example, finding the most optimal route for a postal office worker to take.

What is a heuristic solution?

300

This is the collection of public copyright licenses that enable the free distribution of an otherwise copyrighted work, used when an author wants to give people the right to share, use, and build upon a work that they have created.

What is Creative Commons?

300

This is the run-time error which occurs when this cod executes: 

i <-- 1

REPEAT UNTIL ( i = 4 ){

    DISPLAY(i)

    i <-- i + 2

}


What is an infinite loop?

300

This is the world's biggest island. 

What is Greenland?

400
An email from someone pretending to be your boss and asking for your credit card number is an example of this. 

What is phishing?

400

d <-- 10

e <-- 20

f <-- 30

e <-- d

DISPLAY (e)

DISPLAY (d+e)

What is 10 20?

400

The binary search algorithm makes this vital assumption about the list of data being considered.

What is the data is sorted?

400

Tiffani has a channel on a popular video sharing site and has over 100 thousand subscribers. After making her latest video and uploading to her channel, she notices that the quality of video better on her home computer than the uploaded version. This type of compression is the likely cause of Tiffani’s video quality.

What is lossy compression?

400

The following code should display "even" if the positive number num is even.


IF (MISSING CONDITION)

DISPLAY ("EVEN")


This Boolean expression should replace MISSING CONDITION

What is num MOD 2 == 0?

400

This is how many miles you would have to drive to get from New York to Los Angeles. Closest answer will get points.

What is 2,796.5 miles?

500

The system used for translating a web address like www.google.com into an IP address that can be used to connect to the site's server.

What is the Domain Name System (DNS)?

500

This is binary number 0010 1101 in decimal.

What is 45?

500

Assuming that forward tells a robot to move forward by 10 pixels and turn tells it to turn right by 90 degrees, this shape would be drawn by the following algorithm. forward forward turn forward turn forward forward turn forward turn.

What is a rectangle?

500

A computer program uses 3 bits to represent integers. When the program adds the decimal (base 10) numbers 5 and 3, the result is 0. This is the type of error that occurred.

What is an overflow error?

500

i <- 0

sum <- 0

REPEAT UNTIL i = 4

            sum <- sum + i

            i <- i + 1

DISPLAY (sum)

This is displayed. 

What is 6?

500

As of Friday 5/17/24, this is how many official streams the song "Not Like Us" by Kendrick Lamar has. Closest answer wins!

What is 70.9 million?