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?
What is this?

What is an Arduino?
Describe the output of the following code or describe the error if any:
print("Hello World")
What is "Hello World"?
A step-by-step procedure for solving a problem
What is an algorithm?
The only coordinator not from the US
Who is Sanjana?
Who is this?
Who is Dan Gastler?
A path that electric current flows around made up of resistors, capacitors, inductors, and more
What is a circuit?
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"?
This is what HTML stands for
What is Hyper Text Markup Language?
This coordinator enjoys crossfit!
Who is Carolyn?
This AI is known for joking to take over the world on the Jimmy Fallon Tonight Show
Who is Sophia?
A mistake in the spelling or grammar of the code
What is a syntax error?
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"?
This is what CSS stands for
What is Cascading Style Sheets?
Her cat's name is Porschia
Who is Nicole?
This intelligent young lady from the 1800s is considered the first computer programmer
Who is Ada Lovelace?
This binary number is equivalent to the hexadecimal number 123AE
What is 00010010001110101110?
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"?
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?
Camryn's hometown
What is Roseville?
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?
The lowercase alphabet starts at this decimal number in ASCII code
What is 97?
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"?
This is what ASCII stands for
What is American Standard Code for Information Interchange?
She is currently taking archaeology!
Who is Nicole?