DS&A
TSE Trivia
Pop Culture
Sports
Technology
100

This is a structure used during a breadth first search.

What is a queue? 

100

This is the VP Internal of TSE (first + last name).

Who is Benson Budiman?


100

This movie won the Oscar for Best Picture

What is Parasite?


100

This team won the Super Bowl in 2019

What are the Patriots?

100

This is the most popular operating system for desktop and laptop computers. 

What is Windows 10? 

200

The best case runtime of this sorting algorithm is

import random

def is_sorted(data) -> bool:
    for i in range(len(data) - 1):
        if data[i] > data[i + 1]:
            return False
    return True

def ?sort(data) -> List:
    while not is_sorted(data):
        random.shuffle(data)
    return data

What is O(n)?

200

This is what IHC stands for. 

What is International Health Collective?

200

This rapper won best rap album at the Grammy's this year.

Who is Tyler the Creator?

200

This country is the home country of Roger Federer

What is Switzerland? 

200

This is the smallest unit of data in a computer.

What is a bit?

300

This tree is a self balancing binary search tree where the difference in the heights of the left and right subtrees cannot be more than one for all nodes.

What is an AVL tree?

300

This was what the organization was called before Triton Software Engineering.

What is Triton Conceptualize?

300

This item accidentally appeared in a scene from the final season of Game of Thrones.

What is a Starbucks coffee cup?

300

This soccer (football) player on Real Madrid won the Ballon d'or in 2018

Who is Luka Modric?

300

This is the year the first iPhone was announced. 

What is 2007?

400

Consider an undirected random graph of eight vertices. The probability that there is an edge between a pair of vertices is 1/2. What is the expected number of unordered cycles of length three?


DAILY DOUBLE

What is 7?  (8C3 * (1/2)^3)

400

This how many project teams TSE has? 

What is 7?

400

This hit single (produced by Baauer) went to #1 in the U.S. in 2013 after an internet meme went viral with the song

What is the Harlem Shake?

400

This player was the starting point guard on the 06/07 We Believe Golden State Warriors

Who is Baron Davis? 

400

This was the first web browser.

What is the WorldWideWeb?


500

The goal of this algorithm is to learn a policy, which tells an agent what action to take under what circumstances (find the best action given the current state). This algorithm finds a policy that is optimal in the sense that it maximizes the expected value of the total reward over any and all successive steps, starting from the current state.

What is Q-learning?

500

These are the six words that encompass TSE's decision criteria (you just need 4). 

What are passion, skill, experience, teamwork, attitude, and culture? 

500

This song holds the record for the most streamed song on Spotify.

What is "Shape of You"?

500

This country won the Cricket World Cup in 2015

Where is Australia?

500

This person invented the first battery.

Who is Alessandro Volta?