Class

Class
 
is 
a 
model 
or 
a 
blueprint 
of 
an 
object 
in 
real 
life. 
For
 
eg
. 
Car, 
Person, 
etc

Object/Instances

Objects
 
are 
created 
from 
a 
Class
. 
They 
are 
the 
collection 
of 
data
 
(variables) 
and 
methods
 
(functions) 
that 
act 
on 
those 
variables.
Multiple 
Objects 
can 
be 
created 
from 
the 
same 
class. 
For
 
example
, 
a 
class 
Car 
can 
have 
objects 
like 
Maruti, 
Honda, 
etc.
Objects 
are 
created 
by 
giving 
details 
(attributes) 
to 
a 
model(class).

Attributes

Attributes
 
are 
the 
variables 
used 
inside 
a 
class, 
that 
describe 
the 
real-life 
object. 
For
 
example
, 
a 
class 
Car 
can 
have 
attributes 
like 
the 
model, 
color, 
price, 
etc.

Methods

A 
function 
created 
inside 
a 
class 
is 
called 
a 
method
.
For 
example, 
Class 
car 
can 
have 
methods 
like 
start()
, 
stop()
, 
brake()
, 
park()
, 
etc.