1.

What is instantiation?

Answer»

Once a class is created, next you should create an object or instance of that class. The process of creating object is called as “Class Instantiation”. 

Syntax:

object_name = class_name( )



Discussion

No Comment Found