Eagles Trivia
Coding Trivia (UNIT 3.2)
Random Trivia
100

Name of the Eagle's fight song.

What is Fly, Eagles, Fly?

100

The problem with this string of code. 

def onmousePress(mouseX, mouseY):

    if (mouseX < 200):

        Circle(mouseX, mouseY, 10, fill='cyan')

What is the M is lowercase in onMousePress?

100

Your body's largest organ.

What is the skin?

200

Last year the Eagles won the super bowl.

What is 2018?

200

Define if-else to the best of your ability

What is a statement that checks if a condition is true and does "else" if it is not?

200

The number of bones that sharks have.

What is none or 0?

300
Eagles QB who holds the passing yards in one game
Who is Donovan McNabb?
300
Make a counter pattern with this variable: counter
what is counter.value +=1?
300

The person who painted the Monalisa

Who is Leonardo da Vinci?

400

The Philidelphia Eagles' original name.

What is the Philadelphia Eagles

400

Name the helper functions in the following code:

def drawStars(x, y):

    Star(x-50, y-50, 30, 5, fill='blue')

    Star(x, y-100, 30, 5, fill='gold')

    Star(x+50, y-50, 30, 5, fill='green')


def drawMessage(message, x, y):

    Label(message, x, y, size=30, bold=True)

    drawStars(x, y)


def onMousePress(mouseX, mouseY):

    drawMessage('Fantastic!', mouseX, mouseY)


what is drawStars, and drawMessage?

400

This country invented tea.

What is China?

500

Eagles' first season in the NFL.

What is 1933?
500

The problem with this string of code:

def onMousePress(mouseX, mouseY):

    if (mouseX < 200):

        Circle(mouseX, mouseY, 10, fill='cyan')

        Star(mouseX, mouseY, 10, 5)

What is no problem?

500

This is where stone henge is located.

What is Wiltshire, England?

M
e
n
u