Jeopardy - Massachusetts Institute of...

52
Jeopardy

Transcript of Jeopardy - Massachusetts Institute of...

Page 1: Jeopardy - Massachusetts Institute of Technologystatic.zerorobotics.mit.edu/docs/tutorials/JeopardyGame.pdf · Jeopardy . Jeopardy Categories Space Programming and Logic Math and

Jeopardy

Page 2: Jeopardy - Massachusetts Institute of Technologystatic.zerorobotics.mit.edu/docs/tutorials/JeopardyGame.pdf · Jeopardy . Jeopardy Categories Space Programming and Logic Math and

Jeopardy Categories Space Programming

and Logic Math and

Physics Zero-G IDE SPHERES

Question 1 Question 1 Question 1 Question 1 Question 1

Question 2 Question 2 Question 2 Question 2 Question 2

Question 3 Question 3 Question 3 Question 3 Question 3

Question 4 Question 4 Question 4 Question 4 Question 4

Question 5 Question 5 Question 5 Question 5 Question 5

Page 3: Jeopardy - Massachusetts Institute of Technologystatic.zerorobotics.mit.edu/docs/tutorials/JeopardyGame.pdf · Jeopardy . Jeopardy Categories Space Programming and Logic Math and

Space Question #1

The mission of this US government space agency is to understand  Earth’s  placement  in  

the universe and to explore space.

Page 4: Jeopardy - Massachusetts Institute of Technologystatic.zerorobotics.mit.edu/docs/tutorials/JeopardyGame.pdf · Jeopardy . Jeopardy Categories Space Programming and Logic Math and

What  is  the  “National  Aeronautics and Space

Administration”?

Space Answer #1

Back to Questions

Page 5: Jeopardy - Massachusetts Institute of Technologystatic.zerorobotics.mit.edu/docs/tutorials/JeopardyGame.pdf · Jeopardy . Jeopardy Categories Space Programming and Logic Math and

Space Question #2

This low Earth orbit satellite has astronauts living on it! It has housed people from not one,

but 14 different countries.

Page 6: Jeopardy - Massachusetts Institute of Technologystatic.zerorobotics.mit.edu/docs/tutorials/JeopardyGame.pdf · Jeopardy . Jeopardy Categories Space Programming and Logic Math and

What  is  the  “International  Space  Station  (ISS)”?

Space Answer #2

Back to Questions

Page 7: Jeopardy - Massachusetts Institute of Technologystatic.zerorobotics.mit.edu/docs/tutorials/JeopardyGame.pdf · Jeopardy . Jeopardy Categories Space Programming and Logic Math and

Space Question #3

With over 100 missions, this recently ended program ferried astronauts to the International

Space Station and beyond.

Page 8: Jeopardy - Massachusetts Institute of Technologystatic.zerorobotics.mit.edu/docs/tutorials/JeopardyGame.pdf · Jeopardy . Jeopardy Categories Space Programming and Logic Math and

What  is  the  “Space  Shuttle  Program”?

Space Answer #3

Back to Questions

Page 9: Jeopardy - Massachusetts Institute of Technologystatic.zerorobotics.mit.edu/docs/tutorials/JeopardyGame.pdf · Jeopardy . Jeopardy Categories Space Programming and Logic Math and

Space Question #4

In  1969,  this  mission  was  “one  small step for man, one giant

leap  for  mankind”.

Page 10: Jeopardy - Massachusetts Institute of Technologystatic.zerorobotics.mit.edu/docs/tutorials/JeopardyGame.pdf · Jeopardy . Jeopardy Categories Space Programming and Logic Math and

What  is  the  “first  landing/man  on  the  moon”?

Space Answer #4

Back to Questions

Page 11: Jeopardy - Massachusetts Institute of Technologystatic.zerorobotics.mit.edu/docs/tutorials/JeopardyGame.pdf · Jeopardy . Jeopardy Categories Space Programming and Logic Math and

Space Question #5

This next destination for human exploration includes plans to

establish a permanent human settlement.

Page 12: Jeopardy - Massachusetts Institute of Technologystatic.zerorobotics.mit.edu/docs/tutorials/JeopardyGame.pdf · Jeopardy . Jeopardy Categories Space Programming and Logic Math and

What  is  “Mars”?

Space Answer #5

Back to Questions

Page 13: Jeopardy - Massachusetts Institute of Technologystatic.zerorobotics.mit.edu/docs/tutorials/JeopardyGame.pdf · Jeopardy . Jeopardy Categories Space Programming and Logic Math and

Programming Question #1

This primitive data type possesses the ability to store

decimal numbers, also known as floating point numbers. Hint, it

is not an int.

Page 14: Jeopardy - Massachusetts Institute of Technologystatic.zerorobotics.mit.edu/docs/tutorials/JeopardyGame.pdf · Jeopardy . Jeopardy Categories Space Programming and Logic Math and

What  is  a  “float”?

Programming Answer #1

Back to Questions

Page 15: Jeopardy - Massachusetts Institute of Technologystatic.zerorobotics.mit.edu/docs/tutorials/JeopardyGame.pdf · Jeopardy . Jeopardy Categories Space Programming and Logic Math and

Programming Question #2

Conditional statements are a way to give instructions about when to do something. What is an example of this conditional

statement?

Page 16: Jeopardy - Massachusetts Institute of Technologystatic.zerorobotics.mit.edu/docs/tutorials/JeopardyGame.pdf · Jeopardy . Jeopardy Categories Space Programming and Logic Math and

What  is  an  “if-then”  statement?

Programming Answer #2

Back to Questions

Page 17: Jeopardy - Massachusetts Institute of Technologystatic.zerorobotics.mit.edu/docs/tutorials/JeopardyGame.pdf · Jeopardy . Jeopardy Categories Space Programming and Logic Math and

Programming Question #3

This word, synonymous with “code”  also  means  a  list  of  

instructions or directions for a computer.

Page 18: Jeopardy - Massachusetts Institute of Technologystatic.zerorobotics.mit.edu/docs/tutorials/JeopardyGame.pdf · Jeopardy . Jeopardy Categories Space Programming and Logic Math and

What  is  a  “program”?

Programming Answer #3

Back to Questions

Page 19: Jeopardy - Massachusetts Institute of Technologystatic.zerorobotics.mit.edu/docs/tutorials/JeopardyGame.pdf · Jeopardy . Jeopardy Categories Space Programming and Logic Math and

Programming Question #4

This data structure holds a row of elements that store

information. Some examples include myZRState[12], temp[3],

position[3].

Page 20: Jeopardy - Massachusetts Institute of Technologystatic.zerorobotics.mit.edu/docs/tutorials/JeopardyGame.pdf · Jeopardy . Jeopardy Categories Space Programming and Logic Math and

What  is  an  “array”?

Programming Answer #4

Back to Questions

Page 21: Jeopardy - Massachusetts Institute of Technologystatic.zerorobotics.mit.edu/docs/tutorials/JeopardyGame.pdf · Jeopardy . Jeopardy Categories Space Programming and Logic Math and

Programming Question #5

One of the ways you can make comparisons in code is with

“!=”.  What  does  != mean?

Page 22: Jeopardy - Massachusetts Institute of Technologystatic.zerorobotics.mit.edu/docs/tutorials/JeopardyGame.pdf · Jeopardy . Jeopardy Categories Space Programming and Logic Math and

What  is  “not  equal  to”?

Programming Answer #5

Back to Questions

Page 23: Jeopardy - Massachusetts Institute of Technologystatic.zerorobotics.mit.edu/docs/tutorials/JeopardyGame.pdf · Jeopardy . Jeopardy Categories Space Programming and Logic Math and

Math and Physics Question #1

This law of Physics states that every action has an equal and

opposite reaction.

Page 24: Jeopardy - Massachusetts Institute of Technologystatic.zerorobotics.mit.edu/docs/tutorials/JeopardyGame.pdf · Jeopardy . Jeopardy Categories Space Programming and Logic Math and

What  is  “Newton’s  3rd Law”?

Math and Physics Answer #1

Back to Questions

Page 25: Jeopardy - Massachusetts Institute of Technologystatic.zerorobotics.mit.edu/docs/tutorials/JeopardyGame.pdf · Jeopardy . Jeopardy Categories Space Programming and Logic Math and

Math and Physics Question #2

This commonly used entity in mathematics possesses

magnitude and direction.

Page 26: Jeopardy - Massachusetts Institute of Technologystatic.zerorobotics.mit.edu/docs/tutorials/JeopardyGame.pdf · Jeopardy . Jeopardy Categories Space Programming and Logic Math and

What  is  a  “vector”?

Math and Physics Answer #2

Back to Questions

Page 27: Jeopardy - Massachusetts Institute of Technologystatic.zerorobotics.mit.edu/docs/tutorials/JeopardyGame.pdf · Jeopardy . Jeopardy Categories Space Programming and Logic Math and

Math and Physics Question #3

This word describes the amount of matter in an object.

Page 28: Jeopardy - Massachusetts Institute of Technologystatic.zerorobotics.mit.edu/docs/tutorials/JeopardyGame.pdf · Jeopardy . Jeopardy Categories Space Programming and Logic Math and

What  is  “mass”?

Math and Physics Answer #3

Back to Questions

Page 29: Jeopardy - Massachusetts Institute of Technologystatic.zerorobotics.mit.edu/docs/tutorials/JeopardyGame.pdf · Jeopardy . Jeopardy Categories Space Programming and Logic Math and

Math and Physics Question #4

The mass of an elephant that is six tons on Earth is _______ tons

on the moon.

Page 30: Jeopardy - Massachusetts Institute of Technologystatic.zerorobotics.mit.edu/docs/tutorials/JeopardyGame.pdf · Jeopardy . Jeopardy Categories Space Programming and Logic Math and

What  is  “six”?

Math and Physics Answer #4

Back to Questions

Page 31: Jeopardy - Massachusetts Institute of Technologystatic.zerorobotics.mit.edu/docs/tutorials/JeopardyGame.pdf · Jeopardy . Jeopardy Categories Space Programming and Logic Math and

Math and Physics Question #5

This Law states that an object in motion stays in motion unless

acted upon by an outside force.

Page 32: Jeopardy - Massachusetts Institute of Technologystatic.zerorobotics.mit.edu/docs/tutorials/JeopardyGame.pdf · Jeopardy . Jeopardy Categories Space Programming and Logic Math and

What  is  “Newton’s  1st Law”?

Math and Physics Answer #5

Back to Questions

Page 33: Jeopardy - Massachusetts Institute of Technologystatic.zerorobotics.mit.edu/docs/tutorials/JeopardyGame.pdf · Jeopardy . Jeopardy Categories Space Programming and Logic Math and

Zero-G IDE Question #1

The Zero Robotics website has a special software application,

known as the ZR IDE, that allows you to program code. ZR IDE is

short  for….?

Page 34: Jeopardy - Massachusetts Institute of Technologystatic.zerorobotics.mit.edu/docs/tutorials/JeopardyGame.pdf · Jeopardy . Jeopardy Categories Space Programming and Logic Math and

What  is  “Zero  Robotics  Integrated Development

Environment”?

Zero-G IDE Answer #1

Back to Questions

Page 35: Jeopardy - Massachusetts Institute of Technologystatic.zerorobotics.mit.edu/docs/tutorials/JeopardyGame.pdf · Jeopardy . Jeopardy Categories Space Programming and Logic Math and

Zero-G IDE Question #2

This API function allows a satellite to point in a certain

direction.

Page 36: Jeopardy - Massachusetts Institute of Technologystatic.zerorobotics.mit.edu/docs/tutorials/JeopardyGame.pdf · Jeopardy . Jeopardy Categories Space Programming and Logic Math and

What  is  “setAttitudeTarget”?

Zero-G IDE Answer #2

Back to Questions

Page 37: Jeopardy - Massachusetts Institute of Technologystatic.zerorobotics.mit.edu/docs/tutorials/JeopardyGame.pdf · Jeopardy . Jeopardy Categories Space Programming and Logic Math and

Zero-G IDE Question #3

Calling this API function returns information about the position

and orientation of the opponent satellite.

Page 38: Jeopardy - Massachusetts Institute of Technologystatic.zerorobotics.mit.edu/docs/tutorials/JeopardyGame.pdf · Jeopardy . Jeopardy Categories Space Programming and Logic Math and

What  is  “getOtherZRState”?

Zero-G IDE Answer #3

Back to Questions

Page 39: Jeopardy - Massachusetts Institute of Technologystatic.zerorobotics.mit.edu/docs/tutorials/JeopardyGame.pdf · Jeopardy . Jeopardy Categories Space Programming and Logic Math and

Zero-G IDE Question #4

This command moves a SPHERE to a specific coordinate.

Page 40: Jeopardy - Massachusetts Institute of Technologystatic.zerorobotics.mit.edu/docs/tutorials/JeopardyGame.pdf · Jeopardy . Jeopardy Categories Space Programming and Logic Math and

What  is  “setPositionTarget”?

Zero-G IDE Answer #4

Back to Questions

Page 41: Jeopardy - Massachusetts Institute of Technologystatic.zerorobotics.mit.edu/docs/tutorials/JeopardyGame.pdf · Jeopardy . Jeopardy Categories Space Programming and Logic Math and

Zero-G IDE Question #5

When sharing code with your team, this button must be

pressed to save the current revision of your program.

Page 42: Jeopardy - Massachusetts Institute of Technologystatic.zerorobotics.mit.edu/docs/tutorials/JeopardyGame.pdf · Jeopardy . Jeopardy Categories Space Programming and Logic Math and

What  is  “Commit”?

Zero-G IDE Answer #5

Back to Questions

Page 43: Jeopardy - Massachusetts Institute of Technologystatic.zerorobotics.mit.edu/docs/tutorials/JeopardyGame.pdf · Jeopardy . Jeopardy Categories Space Programming and Logic Math and

SPHERES Question #1

This word, synonymous with “mini”  describes  SPHERES,  

which are designed to work in groups and clusters to perform the function of a large, single

satellite.

Page 44: Jeopardy - Massachusetts Institute of Technologystatic.zerorobotics.mit.edu/docs/tutorials/JeopardyGame.pdf · Jeopardy . Jeopardy Categories Space Programming and Logic Math and

What  is  “micro”?

SPHERES Answer #1

Back to Questions

Page 45: Jeopardy - Massachusetts Institute of Technologystatic.zerorobotics.mit.edu/docs/tutorials/JeopardyGame.pdf · Jeopardy . Jeopardy Categories Space Programming and Logic Math and

SPHERES Question #2

SPHERES, as with many other types of robots need power and fuel to operate. Type AA ______ power SPHERES and ______ is

the fuel used.

Page 46: Jeopardy - Massachusetts Institute of Technologystatic.zerorobotics.mit.edu/docs/tutorials/JeopardyGame.pdf · Jeopardy . Jeopardy Categories Space Programming and Logic Math and

What  are  “batteries”  and  “carbon  dioxide”?  

SPHERES Answer #2

Back to Questions

Page 47: Jeopardy - Massachusetts Institute of Technologystatic.zerorobotics.mit.edu/docs/tutorials/JeopardyGame.pdf · Jeopardy . Jeopardy Categories Space Programming and Logic Math and

SPHERES Question #3

SPHERES is an acronym that stands for a string of seven

words describing its functionality. What are these

words?

Page 48: Jeopardy - Massachusetts Institute of Technologystatic.zerorobotics.mit.edu/docs/tutorials/JeopardyGame.pdf · Jeopardy . Jeopardy Categories Space Programming and Logic Math and

What  is  “Synchronized  Position  Hold Engage and Reorient Experimental  Satellites”?  

SPHERES Answer #3

Back to Questions

Page 49: Jeopardy - Massachusetts Institute of Technologystatic.zerorobotics.mit.edu/docs/tutorials/JeopardyGame.pdf · Jeopardy . Jeopardy Categories Space Programming and Logic Math and

SPHERES Question #4

While on the ISS, SPHERES essentially move without friction

(true or false).

Page 50: Jeopardy - Massachusetts Institute of Technologystatic.zerorobotics.mit.edu/docs/tutorials/JeopardyGame.pdf · Jeopardy . Jeopardy Categories Space Programming and Logic Math and

What  is  “true”?

SPHERES Answer #4

Back to Questions

Page 51: Jeopardy - Massachusetts Institute of Technologystatic.zerorobotics.mit.edu/docs/tutorials/JeopardyGame.pdf · Jeopardy . Jeopardy Categories Space Programming and Logic Math and

SPHERES Question #5

This object controls the movement of the SPHERES,

allowing SPHERES to move in all directions on a grid. There are

12 of these objects on a SPHERE.

Page 52: Jeopardy - Massachusetts Institute of Technologystatic.zerorobotics.mit.edu/docs/tutorials/JeopardyGame.pdf · Jeopardy . Jeopardy Categories Space Programming and Logic Math and

What  are  “thrusters”?

SPHERES Answer #5

Back to Questions