Question:Which method is called when an object is created from a class?
A Finalizer
B Destructor
C Constructor
D Initializer
/28
+ Answer
C
+ ExplanationA constructor is a special method that is called when an instance of a class is created. It is used to initialize the object's data members.