106k views
0 votes
To program a digital turtle to go forward 50 pixels 3 times, what code should be used?

A.
forward 50 repeated 3 times

B.
repeat 3 [forward 50]

C.
50 pixels x 3 times

D.
forward 50 [repeat 3]

2 Answers

5 votes
The answer to your question i the letter D forward 50 [repeat 3]
User Jolanta
by
8.3k points
5 votes

Answer:

B. repeat 3 [forward 50]

Step-by-step explanation:

The correct code to program a digital turtle to go forward 50 pixels 3 times is:

B. repeat 3 [forward 50]

User Calynr
by
8.3k points