What are the 3 pillars of oop?
Answer / Ashutosh Kumar Dubey
"Encapsulation", "Inheritance", and "Polymorphism", often referred to as the three core principles of object-oriented programming
| Is This Answer Correct ? | 0 Yes | 0 No |
Explain polymorphism? What r the types of polymorphism? pls give examples?
Round up a Decimal number in c++.. example Note = 3.5 is as 4 3.3 is as 3
3 Answers Accenture, Cognizant, IBM,
What is polymorphism explain its types?
Can main method override?
In which cases you use override and new base?
what is code for call by value and call by reference?
#include <iostream> using namespace std; int main() { int a = 3; int c[5][5]; for (int x=0;x<5;x++) { for (int y=0;y<5;y++) { c[x][y] = x*y; } } cout << c[a][2]; }
Can an interface inherit a class?
what is the new version of oops
How do you make derived class as an abstract class?
What are different oops concepts?
What is abstraction?