What is the benefit of oop?
Answer / Prity Kumari
The benefits of Object-Oriented Programming (OOP) include modularity, reusability, simplicity, and flexibility. By encapsulating data and functions within objects, code becomes more manageable and easier to maintain over time.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is polymorphism ? Explain with examples
What is design patterns in C++?
What is an object?
What are the advantages of polymorphism?
what are the ways in which a constructors can be called?
how many types of notations are in java
1 Answers National University of Modern Languages (NUML),
State what is encapsulation and friend function?
#include <iostream> using namespace std; int main() { int a = 2; 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][c[1][4]]; }
How is data security provided in Object Oriented languages? ?
what is the difference between class and object?
WHEN A COPY CONSTER IS CALL ?
Which is better struts or spring?