3. The command REPEAT 180 [FD 1 RT 1] results in a
i)
rectangle
ii) semicircle
iii) circle
la
Answers
Answer:
tge answer of the question is circle
Answer: Precisely the command REPEAT 180 [FD 1 RT 1] will result in a circle.This command repeats the following instructions 180 times: move forward by 1 unit (FD 1) and then turn right by 1 degree (RT 1). By repeating this instruction 180 times, the turtle will move forward by 1 unit and turn right by 1 degree 180 times, resulting in a complete circle with a radius of 180 units.
Explanation: The command "REPEAT 180" tells the turtle to repeat the instructions that follow 180 times. In this case, the instructions that follow are "FD 1 RT 1".
The instruction "FD 1" tells the turtle to move forward by 1 unit. This means that the turtle will move 1 unit forward in the direction it is facing.
The instruction "RT 1" tells the turtle to turn right by 1 degree. This means that the turtle will turn 1 degree to the right from its current direction.
Notably by repeating the "FD 1 RT 1" instruction 180 times, the turtle will move forward by 1 unit and turn right by 1 degree 180 times. This will cause the turtle to draw a complete circle with a radius of 180 units.
So, the resulting shape will be a circle, not a rectangle or semicircle, as the turtle will trace out a complete loop.
Learn more about repeat command:https://brainly.in/question/7282456
Learn more about turtle in computer:https://brainly.in/question/6594495
#SPJ3