Is the Invention Real?
Coding
Guess the Salary
Famous Women in STEM
Miscellaneous
100

A space hotel that will house 400 people in 2027

Real (The Space Voyager)

100

What type of error, if any, will occur when the code runs? Explain.

public class A {

    public static void main(String[] args)

    {

        if (true)

            break;

    }

}

Error (using break with an if statement causes a "break outside switch or loop" error)

100

True or False: The wage gap between men and women in technology has closed.

False

100

Who was the first American woman to go to space?

Sally Ride

100

Around what percent of the engineering workforce is female?

11%

200

A shoe that can scan and diagnose your risk for rheumatoid arthritis

Not real

200

Assume the skeleton has already been made, what error, if any will occur when the code segment tries to print?

Point[] a = new Point[10]; 

Object[ ] b; 

b = a; 

a[0] = "hi there"; 

Error (compile-time error)

200

How much do beginner coders make?

The median is between $50k and $60k

200

What woman won the Nobel Prize in Physics in 1903 for her contribution to the understanding of radiation?

Marie Curie

200

What's the most viewed video on YouTube?

Baby Shark Dance by Pinkfong (11.04 billion)

300

Unique pictures of cartoon monkeys you can buy for a minimum of $1 million to join a club of egocentric billionaires

Real (Bored Ape Yacht Club NFT)

300

What will be the Output of the below code or will it error:


public class A {

    public static void main(String[] args)

    {

        int $_ = 5;

    }

}


Nothing prints

300

What salary can you expect starting out at a FAANG company?

$180K

300

Who was the first woman in America to receive an MD?

Elizabeth Blackwell

300

How many software engineers does it take to fix a lightbulb?

None, that's a hardware problem!

400

A medical device that can detect skin rashes and target a back scratcher to the area

Not real

400

What will be the Output of the below code:


public class Demo{

    public static void main(String[] arr){

        Integer num1 = 100;

        Integer num2 = 100;

        Integer num3 = 500;

        Integer num4 = 500;

          

        if(num1==num2){

            System.out.println("num1 == num2");

        }

        else{

            System.out.println("num1 != num2");

        }

        if(num3 == num4){

            System.out.println("num3 == num4");

        }

        else{

            System.out.println("num3 != num4");

        }

    }

}


num1 == num2

num3 != num4

400

How much does a software engineer with 10 years of experience make in Dallas?

$150K

400
Who is known as the inventor of the first compiler?

Grace Hopper

400

Who is the leading cell phone producer in the past year: Apple or Samsung?

Samsung (270 million)

(Apple sold 235 million)

500

Glasses that allow students to learn a 3-hour lesson in 30 minutes

Real (Microsoft Hololens)

500

What will this print?

public class Main

{

    public static void main(String args[])

    {

        String s1 = "abc";

        String s2 = s1;

        s1 += "d";

        System.out.println(s1 + " " + s2 + " " + (s1 == s2));

  

        StringBuffer sb1 = new StringBuffer("abc");

        StringBuffer sb2 = sb1;

        sb1.append("d");

        System.out.println(sb1 + " " + sb2 + " " + (sb1 == sb2));

    }

}

abcd abc false

abcd abcd true

500

How much more do male software engineers make compared to female software engineers in New York?

$5k difference (female software engineers get paid $127k and male software engineers get paid $132k)

500

Who is the founder of Girls Who Code?

Reshma Saujani

500

A metaphor used to represent an invisible barrier that prevents a given demographic from rising beyond a certain level of hierarchy

A glass ceiling

M
e
n
u