Chapter 2.1 - Software Architecture Flashcards

1
Q

What is Software Architecture?

A

Set of structures which comprise software elements, relations between them and their properties

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

What is a purpose of software architecture?

A
  1. Efficiency of the dev process
  2. Minimalization of Risk
  3. Mitigation of misunderstandings
  4. Planing of evolution, reuse
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is System?

A

collection of components,
their boundaries, static structure and behavior

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

What is enviroment?

A

Everything that influences upon system. Politics, Operations, Development

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

Who is a Stakeholder?

A

A Person or entity with interests or concerns about system.

Two most important Stakeholders are principal and the architect

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

What is a View?

A

A representation of a system from a specific perspective.

To address the concerns of stakeholders.

Focused on a particular system aspect.

E.g Logical view, Deployment view, Process view.

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

What is a Viewpoint?

A

A guideline or template for creating views.

To define the rules for building consistent views.

Defines methods for describing system aspects.

E.g Logical viewpoint, Physical viewpoint, Behavioral viewpoint.

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

What is a system Model?

A

Abstraction of the system.
There are different kinds:
Object -> structure of system
Functional -> functions of system
Dynamic -> event flow of system
data -> storage system

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

What is 4+1 view model?

A

Model that describes software arch using 5 view points
1. Logical (end user / designer view)
2. Process (Performance, Scalability)
3. Implementation
4. Deployment
5. Use cases

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

What comprises Logical view?

A

Structure and functionality of the system.
Key components, classes, and their relationships.

  1. Class diagram (for o.o)
  2. Object diagram
  3. State diagram
  4. Composite structure diagrams
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What comprises Implementation View?

A

Code structure and organization.
Module decomposition, libraries, and frameworks.
1. Package diagrams (showing modules and dependencies).
2. Folder structure (for organizing the codebase).

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

What comprises Deployment / Physical
View?

A

Hardware and network topology.
Mapping of software components to physical infrastructure.
1. Deployment diagrams (showing servers, networks, and devices).
2. Infrastructure diagrams (detailing cloud-based or on-premise setups).

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

What comprises Process View?

A

System behavior at runtime.
Concurrency, synchronization, performance, and scalability.

From Scenario we create:
1. Sequence diagrams (showing interactions between components).
2. Activity diagrams (modeling workflows and concurrent execution).
3. Thread/process models (explaining parallelism and synchronization).

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

Which viewpoint can u ignore with a single process app?

A

process viewpoint

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

Which viewpoint can u ignore with a small app?

A

implementation viewpoint

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

What 3 attribute have Models?

A
  1. Reduction -> irrelevant stuff can be omitted
  2. Pragmatism -> they serve a purpose never good for everything
  3. Mapping -> They always map to something (copies of originals)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

What is a Difference between As-Is and To-Be Model

A

As-Is Model: Customers must visit a bank branch to open an account, sign paperwork, and wait for manual processing.

To-Be Model: Customers can apply online, upload documents digitally, and get instant approval using automation.

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

What are the 7 steps of modeling

A
  1. Understand
  2. Cenceptualize
  3. Abstract
  4. Define
  5. Construct
  6. Evaluate
  7. Refine
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

What Methods are there to deal with Design Trade-offs?

A

ATAM - Architecture Trade-off Analysis Method

MCDM - Multi-criteria decision-making methods

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

How does the ATAM Quality Attribute Utility Tree works?

A

At the top we have the Utility
second level: Performance, Availability, Security, Usability etc.
third level Scenarios

Then the scenarios need to prioritized (L/M/H)

Focus on the prioritized elements from each branch

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

What is Partitioning / Decomposition?

A

top-bottom Dividing system into subsystems to achieve high cohesion and low coupling.

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

What is clustering?

A

bottom-up way to group similar objects as clusters.

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

What is modularity?

A

decomposition of system

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

What’s the goal of Modularity

A

Information hiding,
easier maintenance
reusability
work distribution

25
Q

Issues of functional decomposition?

A

Functionality spread all over system
High complexity of the code and system

26
Q

What is modular decomposition?

A

system decomposition into modules

27
Q

What is a black-box model?

A

Black-box model presents the funcitonality of the system

28
Q

What is white-box model?

A

White box shows how the system works internally

29
Q

What is component-connector model?

A

Component that is assigned a connector to help regulate interactions.
e.g File transfer, Stream, Shared DB, Message Bus

30
Q

How does the Decomposition work?

A

“divide and conquer”
1. Try to isolate smaller manageable parts
2. build interfaces between them

31
Q

What is coupling?

A

Average degree of interdependency between modules.

32
Q

What is Cohesion?

A

The dual of coupling. How related are the modules in component.

33
Q

What is a software component?

A

It’s not just a class or file it’s more abstract than that.

  1. independent executable entity
  2. consisting of an interface that handles all outside connections
34
Q

What are 5 characteristics of a software component?

A

Standardized,
Independent,
Composable,
Deployable,
Documented,

hint: similar to micro-service, but differs. e.g interfaces instead of REST requests etc

35
Q

Name 3 basic elements of a component Model

A
  1. Interfaces (Composition, definition, etc)
  2. Usage information (Naming Convention, Meta-data),
  3. Deployment and use (Documentation, Packaging)
36
Q

What’s the purpose of interface in component model

A

Specification of the Language e.g java Interface can implement different kinds of service. (PaymentProcessor - Paypal / Card / etc)
It defines the component for frameworks like WSDL / EJB or Swagger (allows for easier understandability of service)

37
Q

What’s the purpose of Usage in component model

A

Naming convention - e.g for URL
Meta-data - info to users what services are provided

38
Q

What’s the purpose of Deployment in component model

A

Packaging - how should components be packaged, as they are supposed to be independent

39
Q

What are 3 types of component composition?

A
  1. Sequential - There is a glue in the middle
  2. Hierachical - A uses interface of B
  3. Adaptive - A & B are parallelly used
40
Q

Was ist eine Dependency Structure Matrix (DSM)?

A

Eine DSM ist eine Matrixdarstellung von Abhängigkeiten zwischen Elementen in einer Softwarearchitektur. Sie hilft, komplexe Strukturen zu analysieren und zu optimieren.

41
Q

Welche Vorteile bietet die Dependency Structure Matrix?

A

✅ Skalierbare Darstellung komplexer Abhängigkeiten
✅ Erkennung von Mustern und Anti-Patterns
✅ Automatische Architektur-Analyse durch Partitionierung
✅ Effiziente Zyklus-Erkennung

42
Q

Welche Herausforderungen gibt es bei der Nutzung von DSM?

A

⚠️ Qualität der DSM hängt von der Genauigkeit der Daten ab
⚠️ Versteckte Abhängigkeiten können unerwartet auftauchen
⚠️ Weniger intuitiv als Graph-Darstellungen

43
Q

Welche Prinzipien sind für modularen Software-Entwurf wichtig?

A

✅ Geringe Kopplung: Minimiert Abhängigkeiten zwischen Modulen
✅ Hohe Kohäsion: Module sollten zusammenhängende Funktionen enthalten
✅ Einzelverantwortungsprinzip (SRP): Ein Modul sollte nur eine Aufgabe haben

44
Q

Was bedeutet „Separation of Concerns“ in der Softwarearchitektur?

A

Das Prinzip trennt verschiedene Verantwortlichkeiten in unterschiedliche Module, um Verständlichkeit, Wartbarkeit und Wiederverwendbarkeit zu verbessern.

45
Q

Was besagt das Liskov-Substitutionsprinzip?

A

Eine Unterklasse muss sich nahtlos anstelle ihrer Basisklasse verwenden lassen, ohne das Verhalten zu ändern.

46
Q

What does the Interface-segregation principle(ISP) say?

A

An interface should have only the necessary methods that a specific class needs. If an interface is too large (fat interface), it should be split into smaller, more specific interfaces to avoid unnecessary dependencies.

47
Q

Warum ist Code-Duplikation problematisch?

A

🔴 Erhöht den Wartungsaufwand
🔴 Kann zu Inkonsistenzen führen
🔴 Erschwert Änderungen im Code

48
Q

Wie beeinflusst Architektur die externe Softwarequalität?

A

✅ Sicherheit: Viele Schichten können Angriffsflächen vergrößern
✅ Performance: Zu viele Indirektionen können die Leistung beeinträchtigen
✅ Wartbarkeit: Gute Modularität verbessert Änderbarkeit und Fehlerbehebung

49
Q

Was sind Vorteile und Herausforderungen beim Code-Reuse?

A

✅ Vorteile: Zeitersparnis, Kostenreduktion, höhere Qualität
⚠️ Herausforderungen: Unterschiedliche Anforderungen, Wartungsaufwand, Lizenzprobleme

50
Q

Wie beeinflusst Architektur die Testbarkeit?

A

✅ Hohe Modularität verbessert Unit-Tests
✅ Geringe Kopplung erleichtert Testisolierung
❌ Viele Abhängigkeiten erschweren das Testen
❌ Monolithische Systeme sind schwer zu testen

51
Q

Wie beeinflusst Architektur die Sicherheit?

A

🔐 Schichten-Architektur: Reduziert Angriffsfläche
🔐 Demilitarized Zone (DMZ): Trennung zwischen internen und externen Netzwerken
⚠️ Zu viele Abstraktionsschichten: Erhöhen potenzielle Schwachstellen

52
Q

Was besagt das Open-Closed-Prinzip?

A

Softwaremodule sollten erweiterbar, aber nicht veränderbar sein. Das bedeutet, dass neue Funktionen hinzugefügt werden können, ohne bestehende zu ändern.

53
Q

Warum ist das Liskov-Substitutionsprinzip wichtig?

A

Ermöglicht, dass Subklassen anstelle ihrer Basisklassen verwendet werden können, ohne dass das Verhalten unerwartet verändert wird.
“If it looks like a duck, quacks like a duck but needs batteries to run then it’s probably not a duck.”

54
Q

Wie funktioniert eine DMZ in der Softwarearchitektur?

A

DMZ is not as hostile as the internet
▪ DMZ and internal network are two separate networks. Compromising a machine in the DMZ is not the same as compromising the internal network

▪ Place public servers in the DMZ and place internal machines in the internal network: compromising them requires two steps

55
Q

Was ist „Design by Contract“ (DbC)?

A

DbC ist ein Konzept zur Entwicklung robuster Software, bei dem Verträge zwischen Komponenten spezifiziert werden. Diese enthalten:
✔ Preconditions: Bedingungen, die erfüllt sein müssen, bevor eine Methode aufgerufen wird
✔ Postconditions: Bedingungen, die nach der Ausführung erfüllt sein müssen
✔ Invarianten: Bedingungen, die während der gesamten Laufzeit einer Komponente bestehen müssen

56
Q

What is a Single responsibility principle?

A

A class should only have one reason to change
If there are two reasons for a class to change, we have to split the functionality into two classes.
▪ Each class will handle only one responsibility
▪ If we need to make a change, we should make it in the class that handles it
▪ This leads to cohesion at the package/implementation level

57
Q

How does a 3-tiered Architecture looks like?

A

Internet -> Load Balancer -> Webservers -> Dataserver

Webserver is the App at the same time

58
Q

How does a 4-tiered Architecture looks like?

A

Internet -> Load Balancer -> Webservers -> Appservers -> Dataserver