Turtle Academy 3

Turtle Academy
1 / 15
next
Slide 1: Slide

This lesson contains 15 slides, with interactive quizzes and text slides.

Items in this lesson

Turtle Academy

Slide 1 - Slide

Bell Activity
Open Turtle Academy playground.
Using what you've learned last week:
Draw a square with sides of 50 units using repeat
Lift the pen up
Move the turtle forward 50
Put the pen down
Draw a circle with a radius of 150


Slide 2 - Slide

Key Objectives
All: Understand how to use loops (repeats) to make a shape with any number of sides.
Most: Learn how to nest loops (repeats) inside one another.
Some: Teach the turtle reusable commands to increase your pace further.

Slide 3 - Slide

What is the command to move forward 50 units?
A
bk 50
B
fd 50
C
rt 50
D
lt 50

Slide 4 - Quiz

What is the command to move backwards 50 units?
A
bk 50
B
rt 50
C
fd 50
D
lt 50

Slide 5 - Quiz

What is the command to turn left 90 degrees?
A
lt 90
B
fd 90
C
lt 45
D
rt 90

Slide 6 - Quiz

What is the command to turn around?
A
rt 180
B
bk 90
C
lt 360
D
fd 180

Slide 7 - Quiz

How do we lift the turtle's pen up?
A
print xcor
B
pd
C
print cor
D
pu

Slide 8 - Quiz

How do we put the turtle's pen down?
A
print xcor
B
pd
C
print cor
D
pu

Slide 9 - Quiz

Lesson activity
Start from lesson 6.
Continue until you finish lesson 9.
When you finish lesson 9, open the turtle's playground and let me know you've finished.

Slide 10 - Slide

Use the repeat command to draw a square. Each side should be 50 units.

Slide 11 - Open question

Provide an example of a nested loop (e.g. a repeat in a repeat)

Slide 12 - Open question

What does this code produce?
repeat 8 [ repeat 5 [setwidth 1 fd 10 setwidth 3 fd 10] lt 45 ]
A
A dashed square
B
A dashed octagon
C
an octagon
D
a circle

Slide 13 - Quiz

If you haven't done lesson 9, skip ahead to it and finish it off.

Teach the turtle to draw a house. Save a picture (win + shift + s) and add it to this question to share.

Slide 14 - Open question

How do the Turtle Academy lessons prepare us to program in any language?

Slide 15 - Open question