Paparazzi
Getting Technical
Will it Run?
Whats in a Name?
Who's That Coordinator?
100

This man had an encryption method named after him. It was effective during his time because most people couldn't read.

Who is Julius Caesar?

100

What is this?

What is an Arduino?

100

Describe the output of the following code or describe the error if any: 

print("Hello World")

What is "Hello World"?

100

A step-by-step procedure for solving a problem

What is an algorithm?

100

She is the only coordinator not from Massachusetts

Who is Catherine?

200

Who is this?

Who is Dan Gastler?

200

A path that electric current flows around made up of resistors, capacitors, inductors, and more

What is a circuit?

200

Describe the error, if any, in the following code:

print('I have ' + 6 + ' cats')

What is "you can't add an int to a string"?

200

This is what HTML stands for

What is Hyper Text Markup Language?

200

This Coordinator know Taekwondo

Who is Dora?
300

This AI is known for joking to take over the world on the Jimmy Fallon Tonight Show

Who is Sophia?

300

A mistake in the spelling or grammar of the code

What is a syntax error?

300

def DoubleOrNothing():

    num = input("Give a number: ")

    print("Double your number is: " + num*2)

DoubleOrNothing()

---------------------

Assuming the user inputs "4" when prompted, describe the output of the code or describe the error if there is one.

What is "Double your number is: 44"?

300

This is what CSS stands for

What is Cascading Style Sheets?

300

This coordinator hates pickles

Who is Aixa?

400

This intelligent young lady from the 1800s is considered the first computer programmer

Who is Ada Lovelace?

400

This binary number is equivalent to the hexadecimal number 123AE

What is 00010010001110101110?

400

Describe what the following code will output or identify the error is there is one:

def func(x):

    if x > 3:

        print("Artemis!")

    else

        print("Reunion!")


func(4)


What is "missing colon after else"?

400

This is what Ray Kurzweil described as the point where humans and computers become inseparable and we will be able to "upload our consciousness"

What is the Singularity?

400

If Catherine could be an ice cream flavor, she would be this

What is Pistachio?

500

This Dutch Computer Scientist. who has an algorithm named after him, once said "Computer science is no more about computers than astronomy is about telescopes."

Who is Edsger W. Dijkstra?

500

The lowercase alphabet starts at this decimal number in ASCII code

What is 97?

500

Describe the result of the following code or describe the error if any:


#include <Adafruit_NeoPixel.h>

#define NUM_LEDS 2 //number of LEDs in string

#define PIN A0 //pin for data into LEDs

//initialize the library using number of LEDs and PIN

Adafruit_NeoPixel s= Adafruit_NeoPixel(NUM_LEDS, PIN, NEO_GRB + NEO_KHZ800);


void setup() {

  // put your setup code here, to run once:

  s.begin();

  s.setBrightness(100);

  s.show();

}


void loop() {

  // put your main code here, to run repeatedly:

  s.setPixelColor(0,Color(0,225,0));

  s.setPixelColor(1,Color(0,0,225));

  s.show();

}

What is "s.Color"?

500

This is what ASCII stands for

What is American Standard Code for Information Interchange?

500

The name of the squirrel that used to eat Dora's flowers.

Who is Albert?

M
e
n
u