Analysis and Design Models

Choose a study mode

Play Quiz
Study Flashcards
Spaced Repetition
Chat to Lesson

Podcast

Play an AI-generated podcast conversation about this lesson
Download our mobile app to listen on the go
Get App

Questions and Answers

What is the MAIN objective of evolving analysis models into design models?

  • To minimize development time, regardless of system quality.
  • To ensure the system meets functional and non-functional requirements while being affordable and maintainable. (correct)
  • To reduce the number of system users to decrease maintenance costs.
  • To prioritize non-functional requirements over functional ones.

In system design, what does the process of 'factoring' primarily involve?

  • Duplicating modules across different parts of the system for redundancy.
  • Combining multiple modules into a single, complex unit.
  • Separating out a module into a stand-alone, reusable component. (correct)
  • Ignoring modules that are deemed unimportant to simplify the design.

Which of the following BEST describes the relationship between abstraction and refinement in the context of factoring?

  • Abstraction creates lower-level ideas, while refinement creates higher-level ideas.
  • Abstraction and refinement are synonymous processes that both simplify modules.
  • Abstraction creates higher-level ideas, while refinement is the opposite process. (correct)
  • Abstraction and refinement are unrelated processes in factoring.

What is the MOST important reason for identifying collaborations and partitions in system design?

<p>To determine which classes should be grouped together in the design. (A)</p> Signup and view all the answers

How can cluster analysis or multiple dimensional scaling be used in identifying collaborations?

<p>By objectively grouping classes based on their affinity to each other. (A)</p> Signup and view all the answers

In the context of identifying potential partitions, what roles do 'clients', 'servers', and 'contracts' play?

<p>They model the interactions between objects and formalize these interactions. (C)</p> Signup and view all the answers

What does the dependency relationship in a package diagram imply?

<p>There is at least one semantic relationship between elements of the two packages. (D)</p> Signup and view all the answers

Why is it important for packages to be cohesive?

<p>To ensure the classes contained in the package, in some sense, belong together. (C)</p> Signup and view all the answers

What is the significance of verifying and validating analysis models before evolving them into design models?

<p>It ensures that the models accurately represent the problem domain being addressed. (D)</p> Signup and view all the answers

How should inheritance relationships be represented in package diagrams for readability?

<p>Vertically, with the package containing the superclass being placed above the subclass. (B)</p> Signup and view all the answers

What does 'coupling' refer to in the context of object-oriented design?

<p>How interdependent or interrelated modules are in a system. (B)</p> Signup and view all the answers

What are the two types of coupling identified by Coad and Yourdon for object-oriented systems?

<p>Interaction coupling and inheritance coupling. (C)</p> Signup and view all the answers

In the context of object oriented design, what does 'cohesion' refer to?

<p>How single-minded a module is within a system. (C)</p> Signup and view all the answers

What are the three general types of cohesion?

<p>Method, class, and generalisation/specialisation cohesion. (D)</p> Signup and view all the answers

What is the focus of Method cohesion?

<p>Ensuring that methods do one and only one thing. (C)</p> Signup and view all the answers

Which level of encapsulation combines lines of code into a method?

<p>Level-1 encapsulation. (A)</p> Signup and view all the answers

Which level of encapsulation is achieved by creating classes that contain both methods and attributes?

<p>Level-2 encapsulation. (D)</p> Signup and view all the answers

What aspects of a system design does connascence address?

<p>Both level-1 and level-2 encapsulation. (D)</p> Signup and view all the answers

What are some of the key considerations when selecting a design strategy?

<p>Business need, in-house experience, project skills, project management, and time frame. (D)</p> Signup and view all the answers

Physical architecture decisions primarily involve:

<p>Determining hardware and software specifications. (C)</p> Signup and view all the answers

Flashcards

Purpose of Analysis

Figuring out business needs and how the system should be built.

Major Activity During Design

Evolving analysis representations into design representations.

Verifying & Validating Analysis Models

Ensuring analysis models accurately reflect the problem domain.

Primary Purpose of Design Models

Increase the likelihood of successfully delivering a system.

Signup and view all the flashcards

Factoring

Separating a module into a stand-alone module, class, or method.

Signup and view all the flashcards

Abstraction

Creating higher-level ideas from a set of ideas.

Signup and view all the flashcards

Partition

Decomposition of a system into its component systems.

Signup and view all the flashcards

Identifying Collaborations and Partitions: Purpose

Determine which classes should be grouped together in design.

Signup and view all the flashcards

Primary Layer in Evolving Software Architecture

The problem domain layer.

Signup and view all the flashcards

Packages

Represents groupings of classes.

Signup and view all the flashcards

Purpose of Package Diagrams

Logically organize designs.

Signup and view all the flashcards

Coupling

Modules interdependent or interrelated in a system.

Signup and view all the flashcards

Cohesion

Module(class, object or method) is single-minded.

Signup and view all the flashcards

Level-0 Encapsulation

Amount of encapsulation realized in an individual line of code.

Signup and view all the flashcards

Level-1 Encapsulation

Combining lines of code into a method.

Signup and view all the flashcards

Level-2 Encapsulation

Creating classes that contain both methods and attributes.

Signup and view all the flashcards

Connascence

Generalization of cohesion and coupling.

Signup and view all the flashcards

Design Strategies

Custom development, Package software, Outsourcing.

Signup and view all the flashcards

Study Notes

Analysis and Design

  • Analysis determines business needs and how to build the system
  • Design evolves analysis representations into design representations
  • Design includes user interface, system input/output design
  • Physical architecture decisions involve hardware/software and system processing

Verifying and Validating Analysis Models

  • Analysis models must be verified and validated before evolving into design representations
  • Verification and validation ensures models faithfully represent the problem domain

Evolving Analysis Models into Design Models

  • Design models increase likelihood of successful system delivery, implementing functional requirements in an affordable and maintainable manner
  • System design addresses functional and nonfunctional requirements
  • Analysis models are reviewed through a design lens
  • Modifications enhance efficiency and effectiveness of the evolving system
  • Factoring, partitions, collaborations, and layers help evolve problem domain-oriented analysis models into optimal solution domain-oriented design models

Factoring

  • Factoring separates a module into a stand-alone module
  • The new module can be a new class or method
  • Abstraction creates higher-level ideas
  • Identifying the Employee class is an example of abstracting from a set of lower classes to a higher one
  • Refinement is the opposite of abstraction

Partitions & Collaborations

  • A partition is the object-oriented equivalent of a subsystem
  • Subsystems decompose a larger system into component systems
  • An accounting information system is divided into accounts-payable, accounts-receivable, and payroll systems
  • Packages and package diagrams model partitions and collaborations
  • Collaborations should be merged when classes support multiple use cases
  • Cluster analysis or multiple dimensional scaling identifies classes for collaboration, based on affinity
  • Affinity is based on semantic relationships, message types (create, read, update, delete, execute), or a combination
  • Objects sending more messages are more likely to belong in the same partition
  • Modeling collaborations involves clients, servers, and contracts
  • Clients send messages, servers receive messages, and contracts formalize interactions
  • Identifying collaborations and partitions helps determine which classes to group in design

Layers

  • Software architecture should have layers for different system environment elements
  • Data management, UI, physical architecture
  • Layers can be portrayed using packages and package diagrams

Packages and Package Diagrams

  • In UML, packages represent collaborations, partitions, and layers
  • Packages are similar to computer folders
  • Package diagrams consist only of packages
  • Packages group classes, allowing aggregation and association relationships
  • Dashed arrows portray dependency relationships
  • Changes in one package can require changes in another

Guidelines for Creating Package Diagrams

  • Use package diagrams to logically organize designs
  • Group classes with inheritance, aggregation, composition, or collaboration relationships
  • Vertically support inheritance with superclasses above subclasses
  • Horizontally place packages side by side for aggregation and association
  • Dependency implies a semantic relationship between package elements
  • Dependency direction goes from subclass to superclass, whole to part, and client to server
  • Include actors and associations with use cases in packages to improve context
  • Packages should have simple, descriptive names
  • Packages should be cohesive, containing classes that belong together
  • The more classes depend on each other, the more likely they are to belong in the same package

Creating Package Diagrams

  • Set context, cluster classes, create packages, identify dependencies, lay out and draw the diagram

Verifying & Validating Package Diagrams

  • Package diagrams, like other models, require verification and validation
  • Package diagrams derive from class, communications diagrams, and CRUDE matrix
  • Review identified packages from a problem domain perspective
  • Base dependency relationships on message-sending from communications diagrams, CRUDE matrix entries, and class diagram associations

Design Criteria

  • Good design balances trade-offs to minimize system cost over its lifetime
  • Criteria includes coupling, cohesion, and connascence

Coupling

  • Coupling refers to interdependence or interrelation of modules (classes, objects, methods)
  • Higher interdependency means changes in one part can require changes in others
  • Interaction coupling involves coupling among methods and objects through message passing
  • Inheritance coupling relates to the tightness of classes in an inheritance hierarchy

Cohesion

  • Cohesion refers to the single-mindedness of a module (class, object, or method)
  • Method cohesion involves methods doing one thing only
  • Class cohesion means a class represents only one concept
  • Generalisation/specialisation cohesion addresses the suitability of the inheritance hierarchy, concerning how related the classes are within it

Connascence

  • Connascence generalizes cohesion and coupling, combined with arguments for encapsulation
  • Level-0 encapsulation: Encapsulation in an individual line of code
  • Level-1 encapsulation: Combining lines of code into a method
  • Level-2 encapsulation: Creating classes with methods and attributes
  • Method cohesion and interaction coupling address level-1 encapsulation
  • Class cohesion, generalisation/specialisation cohesion, and inheritance coupling address level-2 encapsulation
  • Connascence addresses both level-1 and level-2 encapsulation

Design Strategies

  • Custom development, package software, outsourcing are design strategies

Selecting a Design Strategy

  • Business need, in-house experience, project skills, project management, and time frame help select a design strategy

Studying That Suits You

Use AI to generate personalized quizzes and flashcards to suit your learning preferences.

Quiz Team

Related Documents

More Like This

Use Quizgecko on...
Browser
Browser