

InterviewSolution
Saved Bookmarks
1. |
What is Instantiation in terms of OOP terminology?(a) Deleting an instance of class(b) Modifying an instance of class(c) Copying an instance of class(d) Creating an instance of classI got this question during an interview.This interesting question is from Classes and Objects in division Classes and Objects, Inheritance, Polymorphism, Encapsulation and Exception Handling of Python |
Answer» RIGHT choice is (d) Creating an INSTANCE of class Explanation: Instantiation REFERS to creating an object/instance for a class. |
|