Math/Numbers
Astronomy
Python Basics
Particle Physics
Existential Threats
100

Is zero positive or negative?

neither

100

What is the name of a theoretical star in the early universe with a black hole at its center?

black hole star/quasi-star

100

Which of these colors is NOT accepted by Python's turtle.color() statement:
Olive, Snow, Plum, Salmon, or Amethyst?

amethyst

100

Are you, as a human, closer to the size of the observable universe, or closer to the size of a string from string theory?
(essentially, are you closer to the size of the largest thing or the smallest thing?)

the observable universe

100

What is the greatest threat to humanity?

itself

200

What is the square root of -9?

3i

200

A pulsar is a rapidly spinning ___ that emits bursts of radiation.

neutron star

200

What does this mean?:

!=

not equal to

200

What is the mass of a photon?

zero

200

This hypothesis explains that all of the aliens could be hiding from each other. 

the "dark forest" solution

300

If you were to generate a completely random number, roughly what are the odds that is it larger than graham's number? (graham's number is larger than a googolplex, which is 10 raised to the power of a googol, which is 1 followed by 100 zeroes)

~100%

300

Based on our current understanding, will black holes ever disappear? If so, how?

yes; hawking radiation

300

The modulo operator (%) is used to calculate what?

remainder
300

What particle carries the strong nuclear interaction?

gluon

300

This hypothesis states that most if not all intelligent civilizations destroy themselves/are destroyed once they reach a certain point.

the great filter
400

In what trigonometric situation(s) are you allowed to divide by zero?

arctan(tan^-1)/tanh

arccot(cot^-1)/coth

arcsec(sec^-1)/sech

arccsc(csc^-1)/csch

400

What is the substance inside the core of a neutron star called?

nuclear pasta

400

take this segment of code:


 painter.penup()

  painter.goto(x, y)

  painter.color("gray")

  rem = floor % 6

  if (rem > 2):

    painter.color("blue")

  rem2 = floor % 21

  if (rem2 = 0):

    x = x+55

    y = -150

    painter.goto(x, y)


this code, if inserted into a Turtle Graphics program, would not work. Why?

instead of "if (rem2 = 0):" it should be "if (rem2 == 0):"
the "=" is used to assign values to variables, while "==" tests for equality.

400

In the (very) early universe, the four fundamental forces were one. After the gravitational force and the strong nuclear force split off, we were left with the ___

electroweak force

400

This is the idea that the universe could be existing in a "false vacuum" state, and the universe could suddenly shift to a lower state of energy with potentially cataclysmic consequences.

false vacuum decay

500

You shuffle a deck of cards randomly. What are the odds that you shuffled that exact order of cards?

~1/8000000000000000000000000000000000000000000000000000000000000000000

(that's 8 followed by 67 zeroes)

500

What is the largest object discovered in the observable universe? (specifically)

TON-618 (black hole)

500

what does this code do?


import turtle as trtl

painter = trtl.Turtle()

painter.speed(0)

painter.pensize(5)

x = -150

y = -150

num_floors = 63

for floor in range(num_floors):

  painter.penup()

  painter.goto(x, y)

  painter.color("gray")

  rem = floor % 9

  if (rem > 5):

    painter.color("blue")

  if (rem < 3):

    painter.color("maroon")

  rem2 = floor % 21

  if (rem2 == 0):

    x = x+55

    y = -150

  painter.goto(x, y)

  y = y + 5

  painter.pendown()

  painter.forward(50)

wn = trtl.Screen()

wn.mainloop()

it creates three "towers" with 21 "floors" each, with three colors that alternate every three floors.

500

What gives mass to fundamental particles, and thus, everything else?

higgs field

500

This is the point of no return in technological advancement. Technology will uncontrollably grow, and the consequences will be irreversible.

technological singularity

M
e
n
u