Women in Tech 1
Women in Tech 2
HTML/CSS
Python
Java
100

Who was the first woman to win a Turing Award, often considered the "Nobel Prize of computing"?

Frances Allen

100

Name one of the pioneering women who worked on the Apollo space program in the 1960s and 1970s.

Margaret Hamilton, Dorothy Vaughan, Katherine Johnson. (any of the above works)

100

How do you start and end an HTML document?

With <html> at the start and </html> at the end.

100

How do you write comments in Python?

Use the # symbol for comments.

Example: #add the variables together

100

What does System.out.println do?

It prints a message to the console, followed by a new line.

200

Who is the CEO of YouTube?

 Susan Wojcicki

200

Who is the CEO and co-founder of 23andMe?

( first women to found a company worth over $1 billion)

Anne Wojcicki

200

How do you create a paragraph ?

Use the <p> tag to open and </p> to close a paragraph.

200

What is the difference between = and == ?

= is used to assign a value, while == is used to check if two values are equal.

200

What does this print out?

int a = 10;

int b = 20;

int c = a + b;

System.out.println(c);

30

300

Which woman founded the first computer software company for women in 1962?

Jean Sammet

300

Who is often credited as the first computer programmer?

Ada Lovelace

300

<!DOCTYPE html>

<html>

<body>

    <p>My First Paragraph</p>

</body>

</html>


It displays "My first paragraph" as a paragraph on the webpage. 

300

x = "apple";

y = "banana";

print(x,y);

what does this print out?

 apple banana

300

what does the following code print out?

String firstName = "John";

String lastName = "Doe";

String fullName = firstName + " " + lastName;

System.out.println("Full name: " + fullName);

System.out.println("Length of full name: " + fullName.length());


  • Full name: John Doe
  • Length of full name: 8
400

This woman was the first woman to receive a MacArthur Fellowship in the field of computer science.

Barbara Liskov

400

Who co-developed the first artificial neural network, called Perceptrons, that was used to recognize patterns in data as part of the field of machine learning?

Karen Spärck Jones 

+700 if correct

400

<!DOCTYPE html>

<html>

<body>

    <h1>Workshop Title</h1>

    <p>This is a <b>bold</b> and <i>italic</i> statement.</p>

</body>

</html>


  • A large, bold heading with "Workshop Title" (from the <h1> tag).
  • A paragraph with the text: "This is a bold and italic statement." where "bold" appears in bold and "italic" appears in italics.
400

x = 11;

y = 5;

print("x*y");

What does this code print out?

x*y

400

public static int add(int x, int y) {

    return x + y;

}

public static void main(String[] args) {

    int result = add(3, 5);

    System.out.println(result);

}

what does the main method print out?


8

500

Which organization was co-founded by Marissa Mayer?

Yahoo 

500

What was the first programming language developed by Grace Hopper and her team at Remington Rand in 1956 that was used to program the UNIVAC I computer?

COBOL 

+ 1000 if correct

500

<!DOCTYPE html>

<html>

<body>

    <img src="mark.png" alt="Placeholder image">

</body>

</html>

If the image exists, what will be printed out? What if the image does not exist


  • If mark.png exists, this code will display an image of mark.png with a width and height based on the image's original size.
  • If mark.png does not exist or cannot be found, the browser will show the alternative text: "Placeholder image" in place of the missing image.
500

What does the following code print out?

x = 10

if x > 5:

    print("Greater than 5")

else:

    print("Less than or equal to 5")


Greater than 5

500

what does this print out?

int x = 7;

int y = 3;

int z = x * y - x;

System.out.println(z);

14