Log in
Sign up for FREE
arrow_back
Library

Basic Programming Checkpoint - For loop

star
star
star
star
star
Last updated over 3 years ago
10 questions
Read carefully through the questions and answer them
1
1
1
1
1
1
Question 1
1.

How many tiles will the character move using the following code? Assume that forward() moves the character forward one tile.

for i in range(1, 5):
forward()

Use this to try out the code
Question 2
2.

Which line of code will execute the forward() command?

Question 3
3.

Which of the following pieces of code will make the character fire() 10 times?

Question 4
4.

Which of the following pieces of code will make the character fire() 10 times?

Question 5
5.

Which of the following is equivalent to the code be?

Write the code here to test it
1
Question 6
6.

Blank 1 is:

1
Question 7
7.

Blank 2 is:

1
Question 8
8.

Blank 3 is:

Question 9
9.

Use loops to write the code that prints
left
right
left
right
left
right
up

1
Question 10
10.

Explain the code assuming that the first time the user enters June, then July then August. What will be printed in each of the cases?