Answer:
A and A
Step-by-step explanation:
Q1 – The correct approach to update the script so that it will draw a square instead of a line is:
A. Add “t1.right(90)” in the for loop, after the forward(50) statement.
This will make the turtle turn right by 90 degrees after each forward movement, creating a square.
Q2 – The script will draw:
A. A star
The script moves the turtle forward by 50 units, then turns it right by 144 degrees. This process is repeated 50 times, creating a star pattern. The angle of 144 degrees is chosen because it is a divisor of 360, which ensures that the turtle returns to its starting position after completing the loop.
どういたしまして