Term 3 - Turtle Logo Flashcards

1
Q

What does FD stand for in logo code?

A

Forward (this needs a value e.g. FD 50)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What does BK stand for in logo code?

A

Backward (this needs a value e.g. BK 50)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What does PU stand for in logo code?

A

Pen Up

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What does PD stand for in logo code?

A

Pen Down

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What does RT stand for in logo code?

A

Right Turn (this needs a value e.g. RT 90)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What does LT stand for in logo code?

A

Left Turn (this needs a value e.g. LT 45)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What does CS stand for in logo code?

A

Clear Screen

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What does HT stand for in logo code?

A

Hide Turtle

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What does ST stand for in logo code?

A

Show Turtle

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What does the instruction setcolor do in logo code?

A

Sets the colour of the line turtle draws e.g. setcolor 10 makes the line go green (you do NOT need to learn the codes for the colours)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What logo command makes the turtle reappear?

A

st or showturtle

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What logo command makes the turtle move forwards?

A

fd or forward (this needs a value e.g. fd 50)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What logo command makes the turtle turn right?

A

rt or right (this needs a value e.g. rt 90)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What logo command makes the turtle disappear?

A

ht or hideturtle

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What logo command makes the turtle move backwards?

A

bk or back (this needs a value e.g. bk 50)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What logo command makes the turtle turn left?

A

lt or left (this needs a value e.g. lt 90)

17
Q

What command is used to get turtle to do the same thing?

A

Repeat

18
Q

How do you write the code to draw a square with a side length of 50 using “repeat”?

A

repeat 4 [fd 50 rt 90] - you could use lt 90 instead of rt 90

19
Q

What is it called when we “teach turtle blocks of code”?

A

a procedure

20
Q

How would you “teach the turtle” the command needed to draw a square of side length 50?

A

to square repeat 4[FD 50 RT 90] end

21
Q

When coding a new procedure what is the first word used?

A

to (you are teaching turtle TO do something)

22
Q

When coding a new procedure what is the last word used?

A

end (the lesson to teach turtle comes to the END)

23
Q

When you are teaching turtle a new procedure what is the second thing you type?

A

the name of the procedure e.g. to SQUARE repeat 4[ fd 50 rt 90] end teaches the turtle to draw a square but you have to use the exact spelling (including case - here capitals) so you must type SQUARE for turtle to follow this procedure