Checkpoint 3.18.1.
- Tex.forward(20)
- This is a correct way to move a turtle forward.
- forward() + 20
- This does not use the turtle method necessary to move a turtle forward. Additionally, how would the program know what turtle should be moving?
- forward(20)
- This does not use the turtle method necessary to move a turtle forward. Additionally, how would the program know what turtle should be moving?
- forward(20).Tex
- This is not the correct structure to execute the task.
- Tex.forward(10 + 10)
- You are allowed to write expressions inside of methods, so this is correctly written.
What are correct ways to tell a turtle named Tex to move forward 20 pixels? Select as many as apply.