1Class is a blueprint or template which you can create as many objects as you
2like. Object is a member or instance of a class.
3Class is declared using class keyword, Object is created through
4new keyword mainly. A class is a template for objects. A class defines
5object properties including a valid range of values, and a default value.
6A class also describes object behavior.
1A class is a block of code that holds various functions. Because they
2are located inside a class they are named methods but mean the same
3thing. In addition variables that are stored inside a class are named
4attributes. The point of a class is to call the class later allowing you
5to access as many functions or (methods) as you would like with the same
6class name. These methods are grouped together under one class name due
7to them working in association with eachother in some way.