What is abstract class?
In rails abstract class is same as like other class except one behavior. Can't instantiates the abstract class.
what is instantiates?
Creating the object using create method. For the abstract class during instantiate process it will throw the error as - NotImplementedError : (City is an abstract class and cannot be instantiated)