What is instantiation OOP?
Instantiation means you creating an object of that class.
There are some cases where you don’t want that your class’ instance will be created.
Now, you may have doubt that Why do I don’t want to create an object of that class?
So here are some reasons:
A class contains only static methods or it is final. i.e. Math class in Java
A class contains an abstract method(s) which means implementation of the method
is not done. Now if you don’t have any implementation(logic) is done then there
is no meaning of using that method. So If you create an object and then call
that method. It is useless. That’s why it is not possible to instantiate an
abstract class.