Solved
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
Why do we use if statements? ✔️Correct Ans-To have Tracy make decisions based on conditional
statements
If we write an if statement and the condition is false, what does Tracy do? ✔️Correct Ans-Tracy
skips the commands under the if statement
How would we write an if statement where Tracy will put the pen down if a variable called count
was positive? ✔️Correct Ans-if count > 0:
pendown()
Which comparison operator means 'is not equal to'? ✔️Correct Ans-!=
If the following code was run, how far would Tracy move? ✔️Correct Ans-100 pixels