Board Members
CS 101
CS Club
Name That Language
Debug This 💀
100

How many members are on our board?

What is 11?

100

This data structure follows the rule "Last In, First Out"

What is a stack?

100

This platform is where CS Club members can find announcements, event info, and talk with other members.

What is Discord?

100

print("Hello World")

What is Python?

100

x = 5
print(x)

Clue: What gets printed?

5

200

Who are our social media managers?

Who are Kenzy and Zamzama?

200

In binary, the decimal number 5 is written this way.

What is 101?

200

What year was CS Club founded?

What is 2023?

200

System.out.println("Hello World");

What is Java?

200

for i in range(3):

     print(i)

Clue: What three numbers are printed?

0, 1, 2

300
Which board member is also the president of Google Developer Groups (GDG)?

Who is Shabeer?

300

This data structure stores items as key-value pairs.

What is a hash map/dictionary?

300
This semester is when CS Club traditionally hosts its annual hackathon.

What is Spring semester?

300

console.log("Hello World");

What is JavaScript?

300

x = "5"

y = 5

print(x + y)

Clue: In Python, this code results in this type of error.

What is a TypeError?

400

How many board members are Cybersecurity Engineering majors?

What is 3?

400

This sorting algorithm repeatedly compares neighboring elements and swaps them if they're out of order. 

What is bubble sort?

400

HackFax x PatriotHacks 2026 had approximately this many participants.

What is 500+?

400

std::cout << "Hello World";

What is C++?

400

nums = [1, 2, 3]

print(nums[3])


Clue: This error occurs when the code runs.

What is an IndexError?

500

This board member claims he can do a backflip.

Who is Rayaan?

500

A tree where every node has at most two children is called this.

What is a binary tree?

500

These two organizations are collaborating with CS Club for our upcoming Spring hackathon.

What are PatriotHacks and HackOverflow?

500

println!("Hello World");

What is Rust?

500

def mystery(n):

    if n == 0:

        return 1

    return n * mystery(n - 1)

Clue: mystery(5) returns this number.

       

What is 120?