1) Which of the following is not a OOP concept?
a) compilation
b) polymorphism
c) abstraction
d) inheritance
Answers
Answer:
I think
(C)
Explanation:
please make me brainlist
Answer:
The compilation is not an OOP concept.
Explanation:
OOP Concept
OOP stands for OBJECT ORIENTED PROGRAMMING. This concept is related to mapping real-world problems with computer programming.
The concept works on the four domains known as the pillar of object orientation.
Those four pillars are as follows:
1. Abstraction
Abstraction means hiding the background details and providing an easy-to-use model of the system.
2. Polymorphism
Polymorphism enables to use of the same function name to perform different functionalities as per the need. Like in the real world, many people can have the same name, but it might be possible that all of them do different work.
3. Inheritance
Inheritance means inheriting the properties of the parent class into its child class.
4. Data Encapsulation
It refers to the binding of the data with the class so that essential data can be saved from accidental changes.
So now it is crystal clear, that compilation is not a part of the OOP Concept.
#SPJ2