/** * Utility class with some general methods * which can be used by other classes */ public class ExtraClass { // method to print square of a value to screen public static void printSquare(double y) { System.out.println(y*y); return; } }