Chapter 6 LogoCommands (Question)
Chapter 6 LogoCommands (Question)
1) The small triangle that moves on the Logo screen and leaves a trail behind is called
the________.
2) The window where you type Logo commands is called the ________.
3) The white box in the Commander window where you type primitives is called the ________.
4) The button that stops the Logo program from running further is called the ________.
5) The button that pauses the Logo program temporarily is called the ________.
6) The button that brings the turtle back to its starting position and clears the screen is called the
________.
7) The command that moves the turtle forward a specified number of steps is ________.
8) The command that moves the turtle backward a specified number of steps is ________.
9) The command that turns the turtle's head right (clockwise) by a specified angle is ________.
10) The command that turns the turtle's head left (counter clockwise) by a specified angle is
________.
11) The command that lifts the pen up so the turtle doesn't draw while moving is ________.
12) The command that puts the pen down so the turtle starts drawing again is ________.
13) The command used to display text or perform calculations in the Recall list is ________.
1. In the middle of the Logo screen, you find a small triangle called:
1
Logo Commands
Chapter 6 [QUESTION] Class-IV
Name:______________________________________Class:________School:____________________
A. Turtle (Correct)
B. Square
C. Circle
2. The window where you type Logo commands to control the turtle is called the:
A. Drawing window
B. Commander window (Correct)
C. Main screen
3. Typing Logo commands in lowercase or uppercase will produce:
A. Different results
B. The same results (Correct)
4. The FD 50 command will move the turtle:
A. 50 pixels backward
B. 50 turtle steps forward (Correct)
C. Remain in its current position
5. To turn the turtle completely around (180 degrees), you would use the command:
A. RT 90
B. LT 180 (Correct)
C. BK 180
6. The PU command is used to:
A. Change the pen color
B. Hide the turtle (Correct)
C. Make the turtle thicker
7. To clear the screen and bring the turtle back to its starting position, you would use the:
A. Clear Text command
B. CS (Clear Screen) command (Correct)
C. Reset button
9. The PR command can be used to:
A. Only draw shapes
B. Print text or perform calculations (Correct)
C. Change the turtle's direction
11. The BK command is the shortcut for:
A. Bring Turtle Back (Correct)
B. Move Turtle Forward
C. Change Pen Color
12. The LT 90 command turns the turtle to the left by:
A. A full circle
B. A half circle
C. A quarter turn (Correct)
13. You can use the Step button to:
A. Restart the Logo program
B. Undo mistakes one step at a time (Correct)
C. Change the screen background color
16. The + symbol is used for:
A. Addition (Correct)
B. Subtraction
C. Multiplication
17. The PR REM 10 2 will display:
A. The sum of 10 and 2
2
Logo Commands
Chapter 6 [QUESTION] Class-IV
Name:______________________________________Class:________School:____________________
B. The product of 10 and 2
C. The remainder of 10 divided by 2 (Correct)
19. The PR FIRST "Hello" will print:
A. The entire word "Hello"
B. An error message (Correct) - PR FIRST is for first word, not letter.
C. The letter "o"
20. You can use a loop (REPEAT command) to draw:
A. Only simple lines
B. Complex shapes (Correct)
C. Only circles