Correct Answer: (2) Instantiation
Solution:(2) When we create an object, we create an instance of a class, therefore it is known as "instantiating" a class. The new operator requires a single, postfix argument: a call to a constructor. The name of the constructor provides the name of the class to instantiate. The constructor initializes the new object. In C++ and other similar languages, to instantiate a class is to create an object, whereas in Java, to instantiate a class creates a specific class.