CSC 395 - Chapters 6, 7 Flashcards

1
Q

Describe the difference between architecture in the small and architecture in the large.

A

Architecture in the small – concerned with the architecture of individual programs. At this level, it is concerned with the way an individual program is decomposed into components.

Architecture in the large – concerned with the architecture of the complex enterprise systems that include other systems, programs and components. These enterprise systems may be distributed over different computers, which may be owned and managed by different companies.

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

Describe the five parts of the 4+1 View Model of Software Architecture.

A

Four fundamental architectural views, which can be linked through common use cases or scenarios.
• A logical view – which shows the key abstractions as objects or object classes
• A process view – which shows how the running system is composed of interacting processes
• A development view – which shows how the software is decomposed for development
• A physical view – which shows the system hardware and how the software components are distributed across the processors
• Related using use cases or scenarios (+1)

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

Describe what Architectural Patterns are.

A

A means of representing, sharing and reusing knowledge. A stylized description of good design practice that has been tried and tested in different environments. It should include information about when the pattern should and should not be used. Architectural patterns may be represented using tabular and graphical descriptions.

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

Describe one of the four examples of application types that were discussed.

A

Transaction processing applications – database-centered applications that process user requests and updates information in a system database. They are organized in such a way that user actions can’t interfere with each other and the integrity of the database can be maintained. Ex: banking systems

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

Describe context and interaction models.

A

A context model is a structural model that demonstrates the other systems in the environment of the system being developed

A interaction model is a dynamic model that shows how the system interacts with its environment as it is used

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

Describe one way to identify object classes, their attributes, and methods.

A

Use a grammatical analysis based on a natural language description of the system. Objects and attributes are the nouns; operations or services are verbs.

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

Describe what design patterns are and why they are useful.

A

Design patterns are a way of reusing abstract knowledge about a problem and its solution. The pattern is a description of a problem and the essence of its solution, so that the solution may be reused in different settings. Design patterns are usually associated with Object Oriented Design. Published patterns often rely on object characteristics such as inheritance.

Design patterns are useful because any design problem may have an associated pattern that can be applied. Using patterns means that you can reuse ideas but adapt the implementation.

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

Describe the three main activities of configuration management.

A

Version management – keeps track of the different versions of each component and includes facilities to coordinate development by several programmers.

System integration – helps developers define what versions of components are used to create each version of a system. This is then used to build a system automatically by compiling and linking the required components.

Problem tracking – support for users to report bugs and other problems. Allows all developers to see who is working on these problems and when they are fixed.

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

Describe Open Source development.

A

When source code of a software development is published publically and volunteers are invited to participate in development. Its roots are in the Free Software Foundation. Open Source uses the internet to recruit a large population of volunteer developers.

The open source community allows software to be developed cheaper, quicker and with a built in community of users.

There are still limits on what can be done with the code even though it is freely available – the developer still owns the code. They can place restrictions on how it is used by including legally binding conditions in an open source software license.

Examples: Linux OS, Java

Companies involved in open source software development need to be aware of two issues:
• Should the product being developed make use of open source components?
• Should an open source approach be used for the software’s development?

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