Class Organization Following the standard Java convention, a class should begin with a list of variables.Public static constants, if any, should come first.Then private static variables, followed by private instance variables.There is seldom a good r…