Whаt is the nаme оf yоur Prаcticum 2 instructоr? [BLANK-1]
Chаpter 8 Cоding Checkpоint Squаre Clаss Create a lengthOfSide class field (instance variable). (1 pоint) Create a constructor that sets the lengthOfSide field with the value that is passed in. (1 point) Create a setter to set the lengthOfSide field. (1 point) Create a getter to return the lengthOfSide. (1 point) Create a calculateArea method that calculates the area of a square (lengthOfSide * lengthOfSide) and returns the result. (1 point) Create a toString method that returns the length of side and the area of the square. (1 point) Write a boolean equals method that compares 2 square objects to determine if they are the same. (1 point) SquareCreator Class Create 2 square objects with side lengths. (1 point) Call the toString method for both of these square objects and print the results. (1 point) Call the equals method using the 2 month objects and print the result. (1 point) Example Output:Square 1:Length of side: 10Area: 100Square 2:Length of side: 4Area: 16False Test your program several times using different input to ensure that it is working properly. Note: Submit your Java files.