Basics_Que_04 WAP to take a side of square from the User and calculate area of the Square....Program : public class Basics{ public static int sqrArea(int side){ return side*side; }}