eQuizShow

Girls Coding Club Review

Coding Terms

Question: What is a variable?
Answer: A variable is something you want the computer to remember -- like a number or a word

Question: What is Coding?
Answer: Coding is when you give the computer instructions you want it to follow

Question: What is a statement?
Answer: A statement is a line of code you want the computer to run

Question: What is an ELSE statement?
Answer: An ELSE statement is a statement that will run if the IF part of a code is false

Question: What is the line of code we use to turn an LED on?
Answer: digitalWrite(LEDPin, HIGH);

Coding Terms 2

Question: What is a function?
Answer: A function is a part of the code that the computer can run all as one chunk

Question: What is a loop?
Answer: A loop is when you repeat a chunk of code over and over again

Question: What is a list?
Answer: A list is when you take a series of variables and put them into one big variable. 

Question: What is an If statement?
Answer: An if statement is a statement that if it is true it will run the code within the brackets.

Question: What is the setup part of our programs for?
Answer: for setting up the variables and pins before we start

Circuit Terms

Question: What is a circuit?
Answer: A circuit is a path that carries electricity. It must be continuous from the power source to the load and back again.

Question: What is a resistor?
Answer: A resistor is something in the circuit that resists the flow of electricity

Question: What is a series circuit?
Answer: Series circuits have only one current path to travel on. All of the loads are connected on one wire. 

Question: What is a parallel circuit?
Answer: Parallel circuits are circuits that have several paths to travel on. 

Question: Where do your circuits get their power?
Answer: The computer, through the cord

Parts of A Circuit

Question: What is the source?
Answer: Where the electricity in the circuit comes from 

Question: What is the conductor in a circuit?
Answer: The wire through which electricity flows

Question: What is a load?
Answer: Items along the circuit that convert electricity into other forms of energy. (Like light bulbs, motors or speakers)

Question: What is a control?
Answer: A switch that can turn the circuit or devices along it on or off

Question: What are the four parts of a circuit?
Answer: Source, Load, Conductors, Control

A Bit of Everything

Question: What is Input?
Answer: Input is information that you give the computer like a username or password

Question: What is Output?
Answer: Output is information that the computer gives back to you like a picture or a noise

Question: What is the color code for red?
Answer: R - 255 
G - 0 
B - 0


Question: How many input/output pins are on an arduino?
Answer: 14 (It starts at 0)

Question: What is an arduino?
Answer: An arduino is a micro controller that you can wire and program to do things