0% found this document useful (0 votes)
76 views3 pages

Page 1of3

This document contains an assignment on programming with LOGO that includes multiple choice questions, true/false statements, short answer questions, and writing LOGO commands. The main window of LOGO is divided into three sections. The REPEAT primitive allows instructions to be given in one line instead of multiple lines. The FENCE primitive creates a fence around the screen.

Uploaded by

wins zxc
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
76 views3 pages

Page 1of3

This document contains an assignment on programming with LOGO that includes multiple choice questions, true/false statements, short answer questions, and writing LOGO commands. The main window of LOGO is divided into three sections. The REPEAT primitive allows instructions to be given in one line instead of multiple lines. The FENCE primitive creates a fence around the screen.

Uploaded by

wins zxc
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

FAHAHEEL AL-WATANIEH INDIAN PRIVATE SCHOOL - KUWAIT

Subject – Information Technology Term – 2


Chapter – 7 Programming with LOGO Assignment No. – 2
Name: Class/Sec: Date: ____________

A. Choose the correct answer.

1) The main window of LOGO is divided into ______________ sections.

i. Two ii. Three iii. Five

2) The _________________ primitive allows us to give instruction in one line instead of

giving in multiple lines.

i. FD ii. REPEAT iii. WRAP

3) The _________________ primitive creates a fence around the screen.

i. CLEAR ii. SETSC iii. FENCE

4) The ___________ primitive allows the turtle to appear on the other end of the

screen, once the edge is reached.

i. WRAP ii. CS iii. PE

5) ___________________ button is used to execute the LOGO commands.

i. Execute ii. Status iii. Halt

B. Write ‘T’ for True and ‘F’ for False statement.

1) Turtle works like a pen to draw figures and lines on LOGO. T

2) We can draw polygons easily using REPEAT commands. T

3) Clean primitive clears the main screen and brings the turtle back to its home. F

4) Repeat command allows us to give instructions in one line instead of giving in

multiple lines. T
P a g e 1 of 3
5) PENUP primitive is helpful to move the turtle to any part of the screen without

drawing. T

6) The PENPAINT primitive turns off the eraser and activates the turtle’s pen. T

7) SETSCREENCOLOR primitive can change color of the turtle’s pen. F

8) FILL primitive fills the color defined by the SETFLOODCOLOR primitive in a

closed shape. T

9) The SETH command turns the turtle in anti-clockwise direction. F

10) The wider end of the turtle is called legs. F

C. Short answer questions.

1) What is LOGO?

Answer: LOGO is a programming language, it is used to draw objects and perform

calculations.

2) What is the turtle in LOGO?

Answer: Turtle is a triangle on the main screen. It works like a pen to draw figures

and lines on LOGO.

3) Write the use of the main screen?

Answer: Main screen is the graphical area where the figures are drawn with the

help of turtle.

4) Write the use of the execute button.

Answer: Execute button is used to execute the commands written in the command

input box.

P a g e 2 of 3
5) Give primitives used to lift the turtle’s pen up and to put down the pen.

Answer: Primitive used to lift the turtle’s pen up is PENUP or PU.

Primitive used to put down the turtle’s pen is PENDOWN or PD.

6) What is the REPEAT command?

Answer: Repeat command is used to reduce the number of command to a single

command.

Ex: REPEAT 4 [ FD 100 RT 90]

D. Write the logo commands for the following.

1) Draw an octagon of side 100

Answer: REPEAT 8 [FD 100 RT 45]

2) Set the background color of the main screen to “Red”

Answer: SETSCREENCOLOR 4

3) Change the color of the turtle pen to “Blue” and draw a square of side 150.

Answer: SETPENCOLOR 1

REPEAT 4 [FD 150 RT 90]

P a g e 3 of 3

You might also like