Question: I need a java program code for this question. Exercise (Section 10/30): 1) Implement a class Bug that models a bug moving along a horizontal

I need a java program code for this question.
Exercise (Section 10/30): 1) Implement a class Bug that models a bug moving along a horizontal line. The bug moves to either the right or left. Initially, the bug starts at a given position, moves to the right, but it can turn to change its direction. In each move, its position changes by one unit in the current direction. Find the instance variable(s), define and implement the constructor(s), then supply the following methods: - public void turn() - public void move() - public int getPosition() 2) Document your class, generate Javadoc documentation and produce a test program 'BugTester' that construct a bug, make it move and turn a few times, and print the actual and expected position. 3) Add a comment to your class bug that explains how you can make the bug immobile after 10 moves
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
