What is the process of creating a new object of a class?

(1 point)
encapsulation
O proceduralization
objectification
instantiation

The correct answer is instantiation. Instantiation is the process of creating a new object of a class, where a new instance of the class is created in memory. This can be done using the "new" keyword in most programming languages.