100% Solved
What is the correct way to ask a user for a color and store the answer as a variable? ✔️Correct
Ans-user_color = input("Give a color: ")
user_color = input("Give a color: ") ✔️Correct Ans-The word 'color' is already used as a Tracy
command
Why are parameters useful? ✔️Correct Ans-They allow us to tailor functions to be used in
multiple situations
How many parameters can we use in each function? ✔️Correct Ans-As many as we need
What is the best way to write a program that uses parameters to draw a square with sides that are
50 pixels long? ✔️Correct Ans-def square_length():
for i in range(4):
forward(length)
left(90)
make_square(50)
What is the default starting value of i in a for loop? ✔️Correct Ans-0
, What will the values of i be at each iteration of the loop below? for i in range(3): ✔️Correct Ans-
0, 1, 2
What will happen when the value of i reaches 5 in the loop below? for i in range(5):
left(i)
right(90) ✔️Correct Ans-Tracy will turn 90 degrees to the right
What will the values of i be at each iteration of the loop below?
for i in range(2, 10, 2): ✔️Correct Ans-2, 4, 6, 8
What will be the output of the code below?
penup() backward(150) for i in range(10, 50 ,10): forward(i * 2) pendown() circle(i) penup()
✔️Correct Ans-four circles
How would I tell Tracy to move forward 100 pixels ✔️Correct Ans-forward(100)
When using the circle() command, what value do we put inside the parentheses? ✔️Correct Ans-
The radius of the circle
When Tracy is facing right, from what location does she start drawing her circle? ✔️Correct Ans-
The bottom of the circle