Software Modelling, UML Class Diagram, Data Storage and Databases Flashcards

1
Q

When are class diagrams used

A

They are used when developing an OO system model to show the classes in a system and the association between these classes.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are class models and class diagrams?

A

A class model is a representation of classes in a problem or software solution. Class diagrams are graphical forms of class models

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is an Object, Class, Attribute, Operation and Association

A

Object - An entity that holds data and exhibits behaviour

Class - An abstraction of a set of objects with common operations and attributes

Attribute - A data item held by an object or class

Operation - An object or class behaviour

Association - A connection between classes representing a relation on the sets of instances of the connected classes.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What are the types of class models?

A

Analysis or Conceptual so important entities or concepts in the problem, their attributes, important relationships.

Design, so classes in a software system, attributes, operations, associations, but no implementation details.

Implementation, so classes in a software system with implementation details

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What are the UML class symbols?

A

Class names, attributes, operations and other

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What are the different symbols for feature visibility?

A

+ means public attribute or function meaning it is visible to all classes

  • means private attribute or function so it is visible only in the class

means protected attribute or function which means it is visible in the class that it appears and all the sub classes that have that symbol.

~ means package, so it is visible anywhere in the package containing the class in which it appears.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What are Association Lines?

A

They are connection between classes representing a relation on the sets of instances of the connected classes.

Association Lines are labelled or unlabelled, Readable in two directions and Direction arrows.

They may also have role names.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is Association Multiplicity, what does it do and what does * mean?

A

The multiplicity at target class end of an association is the number of instance of the target class that can be associated with a single instance of the source class.

Basically states how many instances of the associated class can be connected to this class and object.

A * means indefinite (unknown)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What are the class diagram rules?

A

Class symbols must have a name compartment.

Compartments must be in order.

Attributes and operations must be listed one per line.

Attribute and operation specification must be syntactically correct.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What are Class diagram Heuristics?

A

Name classes, attributes, and roles with noun phrases.

Name operations and associations with verb phrases.

Capitalize class names only

Centre class and compartment names but left justify other compartment contents

Only use binary associations

Prefer association names to rolenames.

Place association names, rolenames and multiplicities on opposite sides of the line.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is conceptual modelling and what is it’s process ?

A

A conceptual model is a static model of the important entities in a problem, their responsibilities or attributes, the important relationships among them, and perhaps their behaviours.

Conceptual models are about real world entities in the problem domain and not about software and they help in the understanding of the problem and design of the solution

The Process:
Identify classes
Add attributes
Add associations
Add multiplicities

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What are the steps of creating a concept uml model.

A
  1. Identifying Real World Objects, so identifying the main components of the system and some params of each component.
  2. Adding Attributes, this step is about studying the specs and add attributes to our components, so only including the types, multiplicities and initial values specified in the problem, don’t add irrelevant object identifiers, don’t add implementation attributes and add operations sparingly.
  3. Add associations, the third step is about adding association via brainstorming so studying the spec looking for verbs and propositions describing relationships between model entities.

Look for relationships such as:
Physical or organisational proximity

Control, coordination and influence

Creation, Destruction or modification

Communication

Ownership

  1. Add multiplicities, so take pairs of associated entities in turn this includes making one class the target, the other the source and determining how many instances of the target class can be related to a single instance of the source class.

It also includes reversing the target and source and determine the other multiplicity, consulting the specification and add only multiplicities important in the problem.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is a Generalization?

A

A generalization is the UML relation that holds between one model element and another when the child is a special type of the parent, this is represented by a hollow triangle and lines this triangle attaches to the parent and lines to the children.

Generalization is used to represent UML diagrams to model inheritance.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Difference between Generalization vs Association

A

Generalization is a relation between classes whereas associations represent relations between objects. Generalisation is not a kind of association.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is Inheritance?

A

Inheritance refers to a class inheriting the identical functionality to another class. This is usually the relationship between the parent and child class.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is Bi-Directional and Uni-directional Association

A

Bi directional association is shown by a solid line between two classes. This means that both classes are aware of each other and their relationship, unless you qualify the association as some other type.

In Uni-directional association, two classes are related but only one of them knows that the relationship exists. It is drawn with as a solid line with an arrowhead. (not the closed one)

17
Q

What are packages?

A

Packages enable modelers to organise the model’s classifiers into namespaces like folders in a filing system.

18
Q

What is aggregation and composition?

A

Aggregation relationship is where one class is part of another class. In the aggregation relationship the child class instance can outlive its parent class.

The composition aggregation relationship is just another form of aggregation but the child class lifecycle is dependent on the parent class lifecycle.