Who was the first woman to win a Turing Award, often considered the "Nobel Prize of computing"?
Frances Allen
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)
How do you start and end an HTML document?
With <html> at the start and </html> at the end.
How do you write comments in Python?
Use the # symbol for comments.
Example: #add the variables together
What does System.out.println do?
It prints a message to the console, followed by a new line.
Who is the CEO of YouTube?
Susan Wojcicki
Who is the CEO and co-founder of 23andMe?
( first women to found a company worth over $1 billion)
Anne Wojcicki
How do you create a paragraph ?
Use the <p> tag to open and </p> to close a paragraph.
What is the difference between = and == ?
= is used to assign a value, while == is used to check if two values are equal.
What does this print out?
int a = 10;
int b = 20;
int c = a + b;
System.out.println(c);
30
Which woman founded the first computer software company for women in 1962?
Jean Sammet
Who is often credited as the first computer programmer?
Ada Lovelace
<!DOCTYPE html>
<html>
<body>
<p>My First Paragraph</p>
</body>
</html>
It displays "My first paragraph" as a paragraph on the webpage.
x = "apple";
y = "banana";
print(x,y);
what does this print out?
apple banana
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());
This woman was the first woman to receive a MacArthur Fellowship in the field of computer science.
Barbara Liskov
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
<!DOCTYPE html>
<html>
<body>
<h1>Workshop Title</h1>
<p>This is a <b>bold</b> and <i>italic</i> statement.</p>
</body>
</html>
x = 11;
y = 5;
print("x*y");
What does this code print out?
x*y
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
Which organization was co-founded by Marissa Mayer?
Yahoo
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
<!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
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
what does this print out?
int x = 7;
int y = 3;
int z = x * y - x;
System.out.println(z);
14