What is Class?
Class is Blue print on an Object, It is not possible to create an object without class.
Or
Class is logical entity which plays vital role in creating objects.
Syntax for creating class in Java
class classname
{
//Attributes of class
}
...