What machine did John Deere create to help farmers?
The steel plow
100
What are food miles?
The distance food is transported from the time of its production until it reaches the consumer
100
What programming language does Khan Academy use?
Javascript
100
Name a pioneer in computer science (hint: Persian Rugs)
Grace Hopper
100
Which state did Reka visit to see her family?
West Virginia
200
Name something else that Square makes besides card swipers.
Wallets
200
What is your carbon footprint?
The total greenhouse gas emissions caused by the activities you do.
200
What do you need to declare a variable?
A type (var, int, etc.), A name, and A value
200
University of Illinois is the #1 supplier of computer scientists to which company?
Microsoft
200
Which one of your instructors is adopted?
Calla
300
What is the difference between user interface and user experience?
A user interface is an interaction and a means of communication between a person and a system.
The user experience is the interaction itself and includes the user interface.
300
What are the three types of pollution we discussed?
Air, water and soil pollution
300
Say "kick()" makes a person kick one time. I want to make Cinda kick 100 times, what is the inefficient way to do it, and what is the most efficient way to do it?
Write "kick()" 100 times.
var numberOfKicks=0;
while(numberOfKicks<100){
kick();
numberOfKicks++;
}
300
What is the only high school on the U of I campus, and which one of your instructors attended it?
University Laboratory High School, Hanan
300
How many siblings does Shazia have?
1 brother
400
What is a state machine?
You have two different states and these actions change you to different states.
400
On average, an American household throws out up to how many pounds of food waste per month?
20 pounds
400
I have a code, right? When I read it everything makes sense and the blob keeps coming up and telling me something is wrong. I know Cierra came to my computer and pressed one key somewhere. What could she have done?
Put a semicolon in there (evilll) or any other punctuation.
400
What was the method that R.J. used to transfer your designs to the tote bags? (There is a name for the process)
Sublimation
400
What sport does Brendan play?
Cross country
500
What is the difference between a vector design vs. any regular image? (Remember John Deere)
Vector Images have no pixels. And more widely used.
500
What is bioaccumulation?
When one organism eats another organism that has been in a toxic environment and consumes those same toxins as a result.
500
Which image would we use nested for loops to create?
a) A picture of a duck
b) A checkerboard
c) Three little boys standing in a row.