Difference: Object Oriented Analysis (OOA) and Object
Oriented Design (OOD)?
Answer Posted / subrata
I agree with #1 & #3 responses.
Analysis is more from an end user perspective - what the desired behavior of the system should be.
Design is from the developer perspective - how the system is going to deliver the required behavior as established above.
The difference is "what" and "how".
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
If a method definition has been specified in the base class and the interface which the class is implementing, which definition will be picked if we try to access it using interface reference and class object?
What is the benefit of using inheritance?
Explain about parametric polymorphism?
Are constructors inherited? Can a subclass call the parent's class constructor? When?
What is the difference between a virtual method and an abstract method?
If a method definition has been specified in class , its base class , and the interface which the class is implementing, which definition will be picked if we try to access it using interface reference and class object?
Whether static method can use nonstatic members?
Explain about the analysis phase?
Explain about the relationship between object oriented programming and databases?
Can we override a method by using same method name and arguments but different return types?
Is it possible to override private virtual methods?
Can we use static method definitions in interfaces?
What is @functionalinterface?
Why is class hierarchies managed in object-oriented programming?
What is function override?