This word was created as a combination of 2 movies that premiered on the same day. One of these movies is directed by Greta Gerwig and deals with a doll.
What is Barbenheimer
A movie about founding facebook
What is Social Network
This female performer recently came off of her world tour. Many people who attended her concerts wore silver and partook in a “Mute” challenge
Who is Beyoncé
Which planet in our solar system is closest to the sun?
What is Mercury
Which data structure performs operations in first-in, first-out (FIFO) order?
What is Queue
This Grammy award-winning artist took the mic from a very popular singer at the 2009 Grammys to say “I'm really happy for you, I'mma let you finish. But Beyoncé had one of the best videos of all time! One of the best videos of all time!”
Who is Kanye West
This movie stars a ginger teen that moves to the States from Africa (does not specify what country) and is sucked into a world of high school and drama. This movie showcases a certain book that is the downfall of these high schoolers and contains many secrets and gossip
What is Mean Girls
Finish the lyrics, and provide the title and artist of the following song:
"Make me sweat..."
BONUS POINTS IF YOU DO THE DANCE!
What is "make me hotter, make me lose my breath, make me water." - Water by Tyla
What term describes the body's ability to maintain its normal state?
Consider the following Python code:
def factorial(n):
if n == 0:
return 1
else:
return n * factorial(n-1)
What should factorial(5) return?
What is 120
This woman is portrayed on a reality show set in Atlanta and is known to be both a truth-teller and a drama stirrer. She said “and it has a white refrigerator” and “Whew chile, the ghetto”
Who is NeNe Leakes
Disney's first musical
What is High School Musical?
Which group is considered the top most selling music group of all time?
What is the Beatles
What does HTML stand for?
What is Hypertext Markup Language
Convert 15 to binary
What is 0b1111
This interview took place recently with 2 celebrities where one celebrity, a comedian, aired out the entire dirty laundry of Hollywood, exposing many male celebrities
What is the Kat Williams and Shannon Sharpe interview
This movie involves 2 queer high schoolers who create a fight club to make moves on their crushes. One of the actresses starring in this movie recently won a Golden Globe for her performance in “The Bear”
What is Bottoms
Which Colombian artist dropped on January 12th?
Who is Kali Uchis
Balance this equation:
__ H3PO4 + __KOH -> __ K3PO4 + __ H2O
What is
1 H3PO4 + 3 KOH -> 1 K3PO4 + 3 H2O
What algorithm is used in a sorted array by repeatedly dividing the search interval in half, and has a time complexity of O(log n)?
What is Binary Search
This recent Twitter trend involves 2 celebrities of any choice (preferably dating) and a colored line with labels detailing the stance of the celebrities and their aura/ demeanor
What is the Green Line Test
This movie stars an actress who was previously in a relationship with Machine Gun Kelly. In this movie, this particular actress becomes possessed by a demon and looks toward human flesh to satisfy her appetite.
What is Jennifer's Body
What is Jay-z's real name?
Who is Shaun Carter?
Find the inverse of matrix A:
A = [ [1, 2] [2, 3] ]
What is A = [ [-3, 2] [-1, 3] ]
What is the time complexity of the following function? (worst case):
def func(n):
if (n >= 10):
return n
else:
for i in range(len(n)):
for j in range(len(n) * 2):
print(i * j)
What is O(1)