You are on page 1of 2

INDIAN SCHOOL SOHAR (2021 – 22)

CLASS: IV

SUBJECT: COMPUTER SCIENCE


WORKSHEET NO: 2
LESSON 7: LOGO COMMANDS

ANSWER KEY
---------------------------------------------------------------------------------------------------------------------------------------------------

I. Answer the following in one word:

1. What should be given between the primitives and the number of steps?

Ans. Space

2. Which is the Home position of a turtle?

Ans. Centre

3. Which command allows us to put the turtle pen down on the screen?

Ans. Pen Down

4. Which command is used to clear the entire picture drawn on the main screen?

Ans. Clearscreen

5. Which primitive is used to display a letter, a number, a word, or a sentence?

Ans. Print

6. Which command brings the turtle to the center of the screen?


Ans. HOME
7. Name the command that orders the turtle to disappear from the screen.
Ans. HIDETURTLE
8. Which function will take two values as input?
Ans. REMAINDER
9. Which function is used to subtract two numbers?
Ans. DIFFERENCE
10. Which function divides the first input number by the second input number and gives
the quotient?
Ans. QUOTIENT
II. Fill in the blanks.

1. REPEAT command is used to run the instructions list repeatedly.


2. A full circle is drawn using 360 and a semi-circle using 180.
3. The file saved in LOGO will have an extension. lgo
4. To draw a Pentagon, the REPEAT command is used 5 times.
5. To draw a Hexagon, square brackets are used after the Repeat 6 command for
specifying other primitives.
6. Product function finds the product of two numbers.
7. Equal command compares two numbers and checks whether both numbers are equal
or not.
8. If the number on the left side of the operator is greater than the number on the right
side, then LOGO displays the result as 1 or True.
9. Print command is used to perform calculations using mathematical and logical
operators.
10.To display a word using Print primitive, put a double inverted comma and then type
a word after Print.
11. All the arithmetic operators take 2 inputs.

III. Write the commands to draw the following figures with Repeat.
1. Circle – Repeat 360 [FD 1 RT 1] OR Repeat 360 [FD 1 LT 1]
2. Semicircle - Repeat 180 [FD 1 RT 1] OR Repeat 180 [FD 1 LT 1]
3. Square - Repeat 4 [FD 20 RT 360/4] OR Repeat 4 [FD 20 LT 360/4]
4. Triangle - Repeat 3 [FD 40 RT 360/3] OR Repeat 3 [FD 40 LT 360/3]
5. Pentagon - Repeat 5 [FD 29 RT 360/5] OR Repeat 5 [FD 29 LT 360/5]
6. Hexagon - Repeat 6 [FD 51 RT 360/6] OR Repeat 6 [FD 51 LT 360/6]
7. Septagon - Repeat 7 [FD 50 RT 360/7] OR Repeat 7 [FD 50 LT 360/7]
8. Octagon - Repeat 8 [FD 30 RT 360/8] OR Repeat 8 [FD 30 LT 360/8]
9. Nonagon - Repeat 9 [FD 29 RT 360/9] OR Repeat 5 [FD 29 LT 360/5]
10. Decagon - Repeat 10 [FD 45 RT 360/10] OR Repeat 10 [FD 45 LT 360/10]

You might also like