

InterviewSolution
Saved Bookmarks
1. |
Which of these is not a fundamental features of OOP?(a) Encapsulation(b) Inheritance(c) Instantiation(d) PolymorphismThis question was posed to me in exam.This interesting question is from Encapsulation topic in section Classes and Objects, Inheritance, Polymorphism, Encapsulation and Exception Handling of Python |
Answer» CORRECT choice is (C) Instantiation To EXPLAIN: Instantiation simply refers to creation of an instance of class. It is not a FUNDAMENTAL feature of OOP. |
|