Computer Science, asked by sukh9501924148, 9 months ago

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 avinashmurmu99311
5

Explanation:

Rt 270

pu

fd 56

bk87

fd 70

Answered by Anonymous
1

Answers for the LOGO commands are:

1. Turn the Turtle 270 units from HOME.  rt 270

2. Move Turtle forward by 56 steps without drawing a line.

pu

fd 56

3. Move Turtle backward by 87 steps without drawing a line.   bk 87

4. Make a 90 steps long line and then erase 20 steps from it .

pd

fd 90

PENERASE 20

Similar questions