Computer Science, asked by sukh9501924148, 9 months ago

B. Write LOGO commands for the following.
1. Turn the Turtle 270 units from HOME.
2. Move Turtle forward by 56 steps without drawing a line.
3. Move Turtle backward by 87 steps without drawing a line.
4. Make a 90 steps long line and then erase 20 steps from it.
.................
............​

Answers

Answered by dharmanikita
1

Answer:

2: PU

FD 56

3:PU

BK 87

SORRY I COULDN'T ANSWER THE 1ST AND 2ND QUESTION

Answered by Anonymous
0

Following are the required LOGO commands:

1. to Turn the Turtle 270 units from HOME the command is:  rt 270

2. To Move the Turtle forward by 56 steps without drawing a line the commands are:

pu

fd 56

3. To Move the Turtle backward by 87 steps without drawing a line the command is:   bk 87

4. To Make a 90 steps long line and then erase 20 steps from it the commands are:

​pd

fd 90

PENERASE 20

Similar questions