List out some of the object-oriented methodologies?
Answer / ritesh pal
Object Oriented Development (OOD) (Booch 1991,1994).
Object Oriented Analysis and Design (OOA/D) (Coad and Yourdon 1991).
Object Modelling Techniques (OMT) (Rumbaugh 1991).
Object Oriented Software Engineering (Objectory) (Jacobson 1992).
Object Oriented Analysis (OOA) (Shlaer and Mellor 1992).
The Fusion Method (Coleman 1991).
| Is This Answer Correct ? | 0 Yes | 0 No |
What are the different types of polymorphism in c++?
If a base class declares a function to be virtual, and a derived class does not use the term virtual when overriding that class, is it still virtual when inherited by a third-generation class?
How do we implement inheritance in c++?
What is "map" in STL?
given the code segment below void main() { cout<<"my no. is"; } question is how can we get the output hai aravind my no. is 99999999999 without editig the main().
Can we make any program in c++ without using any header file and what is the shortest program in c++.
Which is the best c++ software?
What are pointer-to-members in C++? Give their syntax.
What is the difference between a template and a macro?
Is c++ slower than c?
write a c++ program that gives output 1 1 2 1 2 3 1 2 3 4 1 2 3 4 5 using looping statement
Can we make copy constructor private in c++?