LOGO what shape would these commands draw: FD 100, RT 90, FD 50, RT 90, FD 100, RT 90, FD 50, RT 90?
Answers
Answer:
Yes
Explanation:
LOGO what shape would these commands draw: FD 100, RT 90, FD 50, RT 90, FD 100, RT 90, FD 50, RT 90? You can , Yes
Answer:
Rectangle is the shape formed using the given commands.
Explanation:
- A programme is a collection of instructions for the computer to follow in order for it to do a certain task.
- The graphical programming language LOGO is used to move a 'turtle' around the surface.
- Use the below commands to get the answer for the above question
Command What it accomplishes
100 FD Take 100 steps ahead with the turtle.
RT 90 Turn the turtle to the right 90º.
LT 90 Turn the turtle to the left 90º.
BK 100 Move the turtle backwards 100 steps.
PU Put the turtle's pen up off the paper.
PD Put the turtle pen back down on the paper.
CS Clear the screen and start over.
HT Hide the turtle (triangle).
ST Show the turtle (triangle).
REPEAT 3 [...] Repeat the commands 3 times.
HOME Resets the turtle to centre of the screen
#SPJ3