NEW
Font size
WorksheetsIntroduction to Logo Commands
Total questions: 10
Worksheet time: 5mins
What does the command `fd` stand for in Logo programming?
Finish drawing
Forward
Fast draw
Final destination
Which command would you use to move the cursor backward in Logo?
bk
bw
bd
back
In Logo, what does the command `rt` stand for?
Rotate
Return
Right
Reset
What is the purpose of the `lt` command in Logo?
Loop through
Left
List
Launch
Which command is used to clear the screen in Logo?
cs
cl
clr
clear
What unit of measure does Logo use for drawing?
Inches
Centimeters
Pixels
Points
How can loops be created in Logo?
Using the command `loop`
Using the command `repeat`
Using the command `cycle`
Using the command `iterate`
What shape will the command `repeat 4 [fd 100 rt 90]` draw?
Triangle
Rectangle
Square
Circle
If you want to draw a triangle using the `repeat` command, which of the following could be a correct sequence?
`repeat 3 [fd 100 rt 120]`
`repeat 3 [fd 100 rt 90]`
`repeat 3 [fd 100 rt 60]`
`repeat 3 [fd 100 rt 180]`
Which of the following commands will move the cursor to the right by 90 degrees?
`lt 90`
`rt 90`
`fd 90`
`bk 90`
