What university was ColorStack founded at?
Cornell
Who is the founder of Meta?
Mark Zuckerburg
Who was the United States President during the Civil War?
Abraham Lincoln
"Bro put belt right to they behind
The way that switch brrt, I know he dy*n, ..."
6-7
Guess the output
Python
x = 7
y = x % 4
z = y * 3
print(x + y * z)
Java
int x = 7;
int y = x % 4;
int z = y * 3;
System.out.println(x + y * z);
34
Who is the founder?
Jehron Petty
This kind of email scam tricks people into giving personal information.
Phishing
What was the best selling console in 2000 (Still the best selling VideoGame Console)?
Playstation 2
Which character is this?
https://docs.google.com/document/d/1BWfX05zSyu_XQ60d5SNSkgvjYZ4FFeXIInepkc1miQM/edit?tab=t.0
John Pork
Guess the output
Python
def add_to(num, target=[]):
target.append(num)
return target
print(add_to(1))
print(add_to(2))
print(add_to(3, []))
# Java
public class AddTo {
public static List<Integer> addTo(int num, List<Integer> target) {
target.add(num);
return target;
}
public static void main(String[] args) {
List<Integer> defaultList = new ArrayList<>();
System.out.println(addTo(1, defaultList));
System.out.println(addTo(2, defaultList));
System.out.println(addTo(3, new ArrayList<>()));
}
}
[1]
[1, 2]
[3]
What is the name of the monthly event that is held on Friday where you can get the chance to hear from partner companies
What is Fam Friday
This field of computing uses qubits instead of binary bits to perform massively parallel calculations
What is quantum computing?
What popular hip hop dance became popular in 2010?
The Dougie
"Raise your ..."
ya ya ya
Debug the Code
Python
numbers = [1, 2, 3, 4, 5]
total = 0
for i in range(len(numbers)):
total =+ numbers[i]
Java
public static void main(String[] args) {
int[] numbers = {1, 2, 3, 4, 5};
int total = 0;
for (int i = 0; i < numbers.length; i++) {
total =+ numbers[i];
}
System.out.println(total);
}
=+
This is the open-source software that powers the ColorStack community experience
What is Oyster
Which element makes up most of the atmosphere?
What is Nitrogen?
In 79 CE, this volcano erupted and buried the Roman city of Pompeii in ash.
Mount Vesuvius?
What character is this?
https://docs.google.com/document/d/1i_3O2JCjz-EVQ5wLh8Y-3-S9PI50gzRISHmGtH-Fsx8/edit?tab=t.0
Brr Brr Patapin
Guess output
Python
nums = [1, 2, 3, 4, 5]
squares = [x**2 for x in nums if x % 2 == 0]
print(squares)
#Java
int[] nums = {1, 2, 3, 4, 5};
List<Integer> squares = new ArrayList<>();
for (int x : nums) {
if (x % 2 == 0) {
squares.add(x * x);
}
}
System.out.println(squares);
[4, 16]
Name 5 ColorStack corporate sponsors?
Andreessen Horowitz, Asana, Atlassian, Bill, Block, Bloomberg, Bungie, Cambridge Mobile Telematics, CodeSignal, CrowdStrike, Credit Karma, Datadog, Dev10, DocuSign, DraftKings, Dropbox, Duolingo, Dynatrace, eBay, Figma, Freenome, GoDaddy, HubSpot, Humane, Jane Street Capital, Liberty Mutual, LinkedIn, Mastercard, Meta, Morgan Stanley, Netflix, Nvidia, Okta, Qualcomm, Reddit, Robinhood, Salesforce, Samsara, Snap, Squarespace, Tennessee Tech University, The MathWorks, Two Sigma, UiPath, Wells Fargo, Workiva, and WP Engine.
Who discovered differential calculus?
Who is Isaac Newton?
This country has more pyramids than Egypt
What is Sudan?
Who is behind this audio?
Don Pollo (King of Spain)
Python
nums = [1, 3, 5, 7, 9, 11]
result = [x - 1 for x in nums if x % 2 != 0]
print(result)
Java
public static void main(String[] args) {
int[] nums = {1, 3, 5, 7, 9, 11};
List<Integer> result = new ArrayList<>();
for (int x : nums) {
if (x % 2 != 0) {
result.add(x - 1);
}
}
System.out.println(result); // [0, 2, 4, 6, 8, 10]
}
What is [0, 2, 4, 6, 8, 10]?