Colorstack Facts

Tech/Science Facts

Random Facts

BrainRot

Coding
100

What university was ColorStack founded at?

Cornell

100

Who is the founder of Meta?

Mark Zuckerburg

100

Who was the United States President during the Civil War?

Abraham Lincoln

100

"Bro put belt right to they behind
The way that switch brrt, I know he dy*n, ..."

6-7

100

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

200

Who is the founder?

Jehron Petty

200

This kind of email scam tricks people into giving personal information. 

Phishing

200

What was the best selling console in 2000 (Still the best selling VideoGame Console)?

Playstation 2

200

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]


300

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

300

This field of computing uses qubits instead of binary bits to perform massively parallel calculations

What is quantum computing?

300

What popular hip hop dance became popular in 2010?

The Dougie

300

"Raise your ..."

ya ya ya

300

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);

    }

=+

400

This is the open-source software that powers the ColorStack community experience

What is Oyster

400

Which element makes up most of the atmosphere?

What is Nitrogen?

400

In 79 CE, this volcano erupted and buried the Roman city of Pompeii in ash.

Mount Vesuvius?

400

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]

500

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.

500

Who discovered differential calculus? 

Who is Isaac Newton? 

500

This country has more pyramids than Egypt

What is Sudan?

500

Who is behind this audio?

Don Pollo (King of Spain)

500

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]?