Lecture 3 - UML Diagrams Flashcards
What does UML stand for
Unified Modelling Language
What are the 2 types of views in UML?
- Static view
- Dynamic view
What does a dynamic view show in a UML diagram?
Focuses on how the system works
What does a static view show in a UML diagram?
Focuses on what the system is
TF: Class diagrams are a type of dynamic view
False. Type of static view
TF: Sequence diagrams are a type of dynamic view
True
What are the three categories of UML diagrams?
- Structural
- Behavioural
- Interaction
Class, component, object are part of what category of UML diagrams?
Structural
Activity, state machine, use case are part of what category of UML diagrams?
Behavioural
Communication (collaboration), sequence, interaction overview, timing are part of what category of UML diagrams?
Interaction
Which category of UML diagram is concerned with the structure of the system?
Structural UML diagrams
Which category of UML diagram is concerned with the behavioural features of a system?
Behavioural UML diagrams
Which category of UML diagram is concerned with how objects interact with each other?
Interaction UML diagrams
What are the two components of a Use Case Diagram?
- Actors
- Use cases
What do Actors represent in Use Case Diagram?
Roles, type of user of the system
What do Use cases represent in a Use Case Diagram?
A sequence of interaction for a type of functionality / summary of scenarios
TF: Use case model is only a partial description of the functionality of the system
False. It is a complete description
Use cases are useful to… (3)
- Determine requirements
- Communicate with clients
- Generate test cases
TF: Class diagrams display what interacts with each other and what happens when they do interact
False. Just display what interacts with each other (classes and their relationships)
Attributes and operations of each class are found in…
Class diagrams
What is the only mandatory item in a class diagram?
Class name
A class in UML diagram is divided into three parts, which are…
- Class name
- Class attributes (variables)
- Class operations (methods)
What does the ‘-‘ modifier represent in UML class notation?
Private
What does the ‘+’ modifier represent in UML class notation?
Public
What does the ‘#’ modifier represent in UML class notation?
Protected
How is static represented in UML class notation?
Underline
How is an abstract class represented in UML class notation?
By writing the name in italics
What is an aggregation and how is it represented in UML class notation?
Association where one class belongs to a collection (e.g. Instructor part of a Faculty). Represented by an empty diamond on side of the collection
What is a composition and how is it represented in UML class notation?
Strong form of aggregation where component cannot exist without aggregate. Represented by a solid diamond on side of the collection
What is inheritance and how is it represented in UML class notation?
A link indicating parent child relationships between two classes (car is child of vehicle). Represented by a triangle pointing to parent
What is Binary Association?
Association where both entities know about each other (both classes can interact with each other)
What is Unary Association?
Association where Class A knows about Class B, but Class B knows nothing about Class A (person knows an address, but address doesn’t know anything about the person)
TF: Object diagram is a snapshot of objects in a system at a specific point in time
True
What are the three possible focuses of Object Diagrams?
- Interactions
- Message passing
- Operation
What is the format of an object diagram?
- instance name : class name (usually underlined)
- attributes and values
What type of diagram displays the structural relationship of components of a software system?
Component diagrams
TF: Components communicate with each other using interfaces
True
What is a package in UML diagrams?
A collection of logically related UML elements
How do package diagrams organize complex class diagrams?
By grouping classes together
What do dotted lines represent in package diagrams?
Package dependencies
What makes a package dependent on another?
If changes in one package can possibly force changes on another package
What type of diagram depicts a static view of the run-time configuration of hardware nodes and the software components that run those nodes?
Deployment diagram
TF: Deployment diagrams only show the hardware for your system
False. Also show the software installed on that hardware
Interaction diagrams describe…
how objects collaborate
TF: Interaction diagrams are static
False. They are dynamic
Is a sequence diagram static or dynamic?
Dynamic
What type of diagram describes a single scenario executing in the system?
Sequence diagram
What level of the UML class diagram is sequence diagram most useful?
Specification level
What are the key parts of a sequence diagram? (3)
- Participant
- Message
- Axes of sequence diagram
What is a participant in a sequence diagram?
Object or entity that acts in diagram
What is a message in a sequence diagram?
Communication between participant objects (method call)
What does the axes represent in a sequence diagram? (vertical and horizontal)
- Vertical: time (going down represents moving forward in time)
- Horizontal: which object/participant is acting
How do you represent objects in a sequence diagram?
Squares with object type (optionally can add object name before the type in form objectName: className)
What do the vertical dashed lines represent in sequence diagrams?
Object’s lifeline
How is the creation of new objects represented in sequence diagrams?
Arrow with ‘new’ written above it
How is the deletion of an object represented in sequence diagram?
X at the bottom of object’s lifeline
TF: Sequence diagrams are language-agnostic (not specific to a programming language)
True.
The type of diagram used to model the dynamic behaviour and use case is called…
Communication diagram
TF: Communication diagram more focused on showing the collaboration of objects rather than the time sequencing
True
TF: Activity diagrams are the object-oriented equivalent of flow charts and data-flow diagrams
True
What are the 5 elements that make up an activity diagram?
- States
- Swim lanes
- Branch
- Fork
- Start and end
What are states in an activity diagram?
Describe what is being processed (indicated by boxes with rounded corners)
What are swim lanes in an activity diagram?
Indicate which object is responsible for what activity
What are branches in an activity diagram?
Transition that branch (indicated by a diamond)
What are forks in an activity diagram?
Transition of a single incoming flow into multiple concurrent flows (indicated by solid bars)
How is the start of an activity diagram represented?
Filled circle
How is the end of an activity diagram represented?
Filled circle with a ring around
What type of diagram shows the different states of an entity and how an entity responds to various events by changing from one state to another?
State transition diagrams