Write a void method squareOfAsterisks() that displays a solid square of asterisks whose side is specified in integer parameter side. For example, if side is 4, the method should display a 4x4 square. Use nested for loops. Test the method in an application that reads an integer value for side from the user and outputs the asterisks with the squareOfAsterisks method.