A space hotel that will house 400 people in 2027
Real (The Space Voyager)
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)
True or False: The wage gap between men and women in technology has closed.
False
Who was the first American woman to go to space?
Sally Ride
Around what percent of the engineering workforce is female?
11%
A shoe that can scan and diagnose your risk for rheumatoid arthritis
Not real
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)
How much do beginner coders make?
The median is between $50k and $60k
What woman won the Nobel Prize in Physics in 1903 for her contribution to the understanding of radiation?
Marie Curie
What's the most viewed video on YouTube?
Baby Shark Dance by Pinkfong (11.04 billion)
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)
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
What salary can you expect starting out at a FAANG company?
$180K
Who was the first woman in America to receive an MD?
Elizabeth Blackwell
How many software engineers does it take to fix a lightbulb?
None, that's a hardware problem!
A medical device that can detect skin rashes and target a back scratcher to the area
Not real
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
How much does a software engineer with 10 years of experience make in Dallas?
$150K
Grace Hopper
Who is the leading cell phone producer in the past year: Apple or Samsung?
Samsung (270 million)
(Apple sold 235 million)
Glasses that allow students to learn a 3-hour lesson in 30 minutes
Real (Microsoft Hololens)
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
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)
Who is the founder of Girls Who Code?
Reshma Saujani
A metaphor used to represent an invisible barrier that prevents a given demographic from rising beyond a certain level of hierarchy
A glass ceiling