Data Types
Loops
Variables
Turtle
Random - any subject! Risky...
100

2 is an example of this data type.

What is integer?

100

What is a loop in programming?

A loop is a structure that repeats a section of code.

100

Why is it important to name variables with descriptive names?

Helps us understand what the program is doing... less bugs.. 

100

Write a line of code that draws a circle with a radius of 20.

t.circle(20)

100
How many cats does Mr. Carey have?

2 cats :)

200

3.2 is an example of this data type.

What is a float?

200

What are the two types of loops?

For and while loops

200
What is a variable as used in computer science?

A value or "box" that stores information.

200

Write a line of code that draws a triangle.

t.circle(20, 360, 3)

200

Who are the two main protagonists of The Lord of The Rings?

Frodo Baggins and Samwise Gamgee

300

"5" is an example of this data type.

What is a string?

300

How many times does this loop run? 

for x in range(5):

t.circle(40)

t.forward(20)

5 times.

300

Write an example of a variable in Python syntax. 

color = red

300

Write a line of code that draws a hexagon.

t.circle(50, 360, 5)

300

What is the "NPC" abbreviation short for to a video gamer?

Non-Playable Character

400

True is an example of this data type.

What is a Boolean?

400

What is the difference between while and for loops?

For loops run for a specific amount of times. While loops run until a certain condition is met.
400

Ask a user for their age, with a variable to store that information.

age = int(input("how old are you?")

400

Write a line of code that draws an octagon. 

t.circle(60, 360, 8)

400

How do you calculate the atomic mass of an element?

Add the protons and neutrons. 

500

1 or 0 is an example of...(3 answers)

Integer / Boolean / Binary 

500

Write an algorithm that draws a star using a for loop.

for line in range(5): 

t.forward(30)

t.right(144)

500

What is it called when we use "int" when asking a user for a number alongside a string?

This is called casting. It changes the string to an integer automatically. 

500

With your group, write an algorithm that draws two circles 50 pixels away from each other. 

import turtle

t = trtl.Turtle()

t.circle(20)

t.penup()

t.goto(50, 0)

t.pendown()

t.circle(20)

500

Which planet is the hottest in our solar system?

Venus

M
e
n
u