Technocamps: Python Maths Quiz
Sign in to Google to save your progress. Learn more
How many degrees in a Right Angle? *
2 points
Which turtle instruction allows a turtle to draw the sides of a shape? *
2 points
When we tell a turtle to go right, which way does it turn? *
2 points
What units are the values in the Forward instructions? *
3 points
How many sides does an Octagon have? *
2 points
How many sides does a Parallelogram have? *
2 points
How many sides does a Triacontadigon have? *
3 points
How many sides does a Hendecagon have? *
3 points
What are the three rules for naming our turtle? *
3 points
Required
Which of these python commands is optional at the start of a python turtle program? *
2 points
Which of these is NOT a python turtle command? *
2 points
When put together in order, these answers form lines of code that draw a Triangle. Which lines have mistakes? *
5 points
Required
What calculations can we perform to find out the Exterior Angle of any regular polygon. *
2 points
Required
What is the name of the shape that Question 1 A) draws? *
2 points
What is the name of the shape that Question 1 B) draws? *
2 points
What is the name of the shape that Question 1 C) draws? *
3 points
What is the name of the shape that Question 1 D) draws? *
4 points
Python Program:
import turtle
turtle.colormode(255)

ted = turtle.Turtle()

ted.pencolor((22,155,98))
ted.fillcolor((22,155,98))

ted.begin_fill()
for i in range(2):
    ted.forward(100)
    ted.right(90)
    ted.forward(175)
    ted.right(90)
ted.end_fill()

ted.penup()
ted.forward(100)
ted.pendown()

ted.pencolor("white")
ted.fillcolor("white")

ted.begin_fill()
for i in range(2):
    ted.forward(100)
    ted.right(90)
    ted.forward(175)
    ted.right(90)
ted.end_fill()

ted.penup()
ted.forward(100)
ted.pendown()

ted.pencolor((255,136,62))
ted.fillcolor((255,136,62))

ted.begin_fill()
for i in range(2):
    ted.forward(100)
    ted.right(90)
    ted.forward(175)
    ted.right(90)
ted.end_fill()
What flag does this code produce? You will need to write it out in Python and run it.
6 points
Submit
Clear form
Never submit passwords through Google Forms.
This form was created inside of Technocamps. Report Abuse