X835: LightBot Writing Method Calls 5

For the question below, assume we are working with a simplified LightBot that can perform the following actions

  • Turn Left
  • Turn Right
  • Move Forward
  • Jump

Each of these actions is represented by a method call:

  • Turn Left --> turnLeft()
  • Turn Right --> turnRight()
  • Move Forward --> moveForward()
  • Jump --> jump()

For this problem, you'll be working with a LightBot object named andy.

Write code so that andy turns left four times, then turns right four times.

Your Answer:

Reset

Practice a different Java exercise

Feedback

Your feedback will appear here when you check your answer.