What do you meant by static and dynamic modeling?
Answer Posted / musheer
Static model is a time independent view of a system . however static modelling is supposed to detail what preferrably might happen instead of the numerous possibilities. that's why it is more rigid and cannot be changed. therefore, it is called static modelling . use case can be a part of both static and dynamic modelling depending on how it is designed. normally it is, a part of static modelling . it includes
class diagram
object diagram
component diagram
deployment diagram
.Dynamic Modeling
it is time dependent and more appropriately it shows what an object does essentially with many possibilities that may arise. it is flexible but its flexibility is limited to the design on the system.
it includes
use case
interaction
state chart
activity
| Is This Answer Correct ? | 25 Yes | 9 No |
Post New Answer View All Answers
What is the main difference between overloading and overriding?
Can I implement polymorphism using abstract class?
What is a default method? Why do we need default methods in java 8 interfaces?
What is meant by function overloading and function overriding?
Explain about encapsulation?
A class inherits from 2 interfaces and both the interfaces have the same method name as shown below. How should the class implement the drive method for both car and bus interface?
Explain about object oriented databases?
What is a pure virtual function?
What's the order of call of constructors in inheritiance?
What is Polymorphism, overloading, overriding and virtual?
What is the difference between a virtual method and an abstract method?
Can you create an instance of an abstract class?
State about java and its relation to object oriented programming?
Is it possible to provide method implementations in java interfaces? If possible, how do we provide them?
Can you instantiate an abstract class and what is an inner class?