Differentiate between structural models and behavioral models.

  The difference between structural models and behavioral models are:- 

Structural Models

  • Structural models of software display the organization of a system in terms of the components and their relationships.
  • Structural models may be static models, which show the structure of the system design, or dynamic models, which show the organization of the system when it is executed.
  • Structural models are created when discussing and designing the system architecture.


Behavioral Models

  • Behavioral models are models of the dynamic behavior of a system as it is executing. They show what happens or what is supposed to happen when a system responds to a stimulus from its environment.
  • You can think of these stimuli as being of two types:

•A. Data Some data arrives that has to be processed by the system.

•B. Events Some event happens that triggers system processing. Events may have associated data, although this is not always the case.

  • A sequence diagram and State Transition Diagram may be used for the behavioral model.




Comments

Popular posts from this blog

Discuss classification or taxonomy of virtualization at different levels.

Suppose that a data warehouse consists of the three dimensions time, doctor, and patient, and the two measures count and charge, where a charge is the fee that a doctor charges a patient for a visit. a) Draw a schema diagram for the above data warehouse using one of the schemas. [star, snowflake, fact constellation] b) Starting with the base cuboid [day, doctor, patient], what specific OLAP operations should be performed in order to list the total fee collected by each doctor in 2004? c) To obtain the same list, write an SQL query assuming the data are stored in a relational database with the schema fee (day, month, year, doctor, hospital, patient, count, charge)

What is RMI? Discuss stub and skeleton. Explain its role in creating distributed applications.