Coding
Human Impact
Robotics
Ocean
TV Series
100

What does the = operator do in programming?

= Is used to assign value to a variable
100

What human activity contributes to the increase of plastic in the oceans?

Waste disposal and improper management of plastic materials lead to them entering the ocean.

100

What does FLL stand for in robotics competitions?

FLL stands for First Lego League.

100

What percentage of the Earth's surface is covered by oceans?

About 71% of the Earth's surface is covered by oceans.

100

What is the name of the main character in Breaking Bad, and what is his profession at the beginning of the series?

The main character in Breaking Bad is Walter White, and he is a high school chemistry teacher at the beginning of the series.

200

Guess the output

x = 5

y = x + 3

x = x * 2

print(y, x)

y = 8, x = 10

200

How does the use of fishing nets impact marine ecosystems?

Fishing nets can trap non-target species, such as dolphins and turtles, which disrupts marine ecosystems.

200

What is the primary goal of an FLL competition?

The primary goal of an FLL competition is to design, build, and program a robot to complete specific tasks on a game field.

200

What is the average depth of the world's oceans?

The average depth of the world's oceans is approximately 3,688 meters (12,100 feet).

200

What crime family is Tony Soprano a part of in The Sopranos?

Tony Soprano is a part of the DiMeo crime family, also known as the North Jersey Mafia.

300

What is the difference between a list and a tuple in Python?

Lists are mutable — their elements can be changed, deleted, or added. Tuples are immutable and remain fixed once created.

300

Why does an increase in atmospheric carbon dioxide lead to ocean acidification?

Oceans absorb CO₂ from the atmosphere, forming carbonic acid, which lowers the pH level and harms marine life.

300

Name two programming languages commonly used in FLL robotics.

Two commonly used programming languages in FLL are LEGO Mindstorms EV3 software and Python.

300

Which is the largest ocean on Earth by surface area?

The Pacific Ocean is the largest ocean on Earth, covering around 63 million square miles (165 million square kilometers).

300

In Friends, what are the names of the six main characters?

The six main characters are Ross, Rachel, Monica, Chandler, Joey, and Phoebe.

400

What will the following code output, and why?

def func(a, lst=[]):

    lst.append(a)

    return lst


print(func(1))

print(func(2))

print(func(3))

The output will be [1], [1, 2], [1, 2, 3]. This is because lst is a mutable default argument, retaining changes between function calls.

400

How does ocean warming affect coral reefs?

Rising ocean temperatures cause coral bleaching, where corals lose their symbiotic algae, leading to weakened coral and potential reef die-off.

400

 What are the main components of an FLL robot?

The main components of an FLL robot typically include motors, sensors (like ultrasonic and color sensors), a microcontroller (like the EV3 brick), and LEGO structural elements.

400

What is the deepest point in the ocean, and where is it located?

The deepest point in the ocean is the Challenger Deep, located in the Mariana Trench in the western Pacific Ocean, with a depth of about 10,994 meters (36,070 feet).

400

In Stranger Things, what is the alternate dimension called where dangerous creatures like the Demogorgon live?

The alternate dimension is called the Upside Down.

500

How can you measure the execution time of a function in Python to evaluate its performance?

Use the timeit module or a profiler for accurate measurement of the function's execution time.

500

What are the long-term effects of overfishing on ocean biodiversity?

Overfishing disrupts food chains, reduces species populations, and can lead to ecosystem collapse, affecting biodiversity and ocean health for generations.

500

How many challenges does SUBMERGED FLL map have?

16

500

What is the approximate total volume of water in all of Earth's oceans combined?

The total volume of water in all of Earth's oceans is estimated to be around 1.332 billion cubic kilometers (320 million cubic miles).

500

In The Office (U.S. version), what is the name of the paper company where the characters work?

The paper company is called Dunder Mifflin.

M
e
n
u