How many members are on our board?
What is 11?
This data structure follows the rule "Last In, First Out"
What is a stack?
This platform is where CS Club members can find announcements, event info, and talk with other members.
What is Discord?
print("Hello World")
What is Python?
x = 5
print(x)
Clue: What gets printed?
5
Who are our social media managers?
Who are Kenzy and Zamzama?
In binary, the decimal number 5 is written this way.
What is 101?
What year was CS Club founded?
What is 2023?
System.out.println("Hello World");
What is Java?
for i in range(3):
print(i)
Clue: What three numbers are printed?
0, 1, 2
Who is Shabeer?
This data structure stores items as key-value pairs.
What is a hash map/dictionary?
What is Spring semester?
console.log("Hello World");
What is JavaScript?
x = "5"
y = 5
print(x + y)
Clue: In Python, this code results in this type of error.
What is a TypeError?
How many board members are Cybersecurity Engineering majors?
What is 3?
This sorting algorithm repeatedly compares neighboring elements and swaps them if they're out of order.
What is bubble sort?
HackFax x PatriotHacks 2026 had approximately this many participants.
What is 500+?
std::cout << "Hello World";
What is C++?
nums = [1, 2, 3]
print(nums[3])
Clue: This error occurs when the code runs.
What is an IndexError?
This board member claims he can do a backflip.
Who is Rayaan?
A tree where every node has at most two children is called this.
What is a binary tree?
These two organizations are collaborating with CS Club for our upcoming Spring hackathon.
What are PatriotHacks and HackOverflow?
println!("Hello World");
What is Rust?
def mystery(n):
if n == 0:
return 1
return n * mystery(n - 1)
Clue: mystery(5) returns this number.
What is 120?