Exam prep Flashcards

1
Q

What is the difference between Orchestrion and Choreography?

A

Orchestrion is the coordination of multiple services through a mediator. On the other hand with Choreography the services talk to each other.

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

What is a sidecar in microservices?

A

Its a tool for upgrading multiple components at ones. If you update the sidecar all these components update based on the sidecar.

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

What are the two primary topologies in event driven architecture?

A

Broker and Mediator.

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

What is “Information Hiding” in SA design principles?

A

An external part has no access directly to a models data. It can only be accessed through an API(getters and setters). Also called encapsulation.

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

What is “Cohesion” in SA design principles?

A

It relates to the degree which the elements inside a module belong together.
They can be ranked.

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

What is “Separation of Concern” in SA design principles?

A

Separating features into distinct artifacts to make it easier for developers to find the code and maintain it. Also called Cohesion.

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

What is “Single Responsibility” in SA design principles?

A

It states that objects should have only one responsibility and that they should have only one reason to change. It is a principle from OOP. Adding new classes are safer than changing existing. It is a special case of Separation of Concern.

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

What is “Reusability” in SA design principles and how do you make it more reusable?

A

Modularization, Visible variable features, cohesion and loose coupling

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

What is ADD?

A

Attribute-Driven Design is an iterative method and is supposed to help with:
-Choose a part to design
-Rationalize the ASRs for that part.
-Create and test a design for that part

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

What is ATAM?

A

Architecture Trade-Off Analysis Method is a method for evaluating software architectures relative to quality attribute goals.

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

What is the most important way to measure software complexity?

A

CC: Cyclomatic Complexity, a metric measurement of the number of linearly independant paths through a programs spurce code. Not need to know but formula is CC=E-N+2, edges minus nodes +2

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

What are the four steps of ATAM?

A

Gather scenarios and requirements.
Architectural views and scenario realization
Model Building and analyzes
Tradeoffs

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

What is a sensitivity point?

A

A parameter of the architecture to which some quality attribute is highly related.

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

What is a trade-off point?

A

An architecture decision that affects multiple quality attributes in opposite direction.

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

What is the ATAM conceptual flow of business?

A

Identify Business drivers, get quality attributes from drivers, write scenarios from attributes.

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

What is the ATAM conceptual flow of architecture?

A

Identify architectural plan, find architectural approaches, make architectural decisions.

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

What is blockchain technology?

A

A P2P architecture style.

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

What are the three levels of p2p architectures mentioned in blockchains?

A

Mediated: uses one central server for rules and control but also p2p
Pure: No server, only p2p
Hybrid: uses servers for rules and control but also p2p

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

What is most important about blockchain for the exam?

A

Can not be changed due to ledger, there is a source node and a chain of owners.

What is true is based on consensus, most of one opinion wins and is thus the truth.

20
Q

What is a functional decomposition diagram?

A

Just imagine it, its the 3 level one we used for the drone, with a lawnmower as example.

21
Q

What are antipatterns and name one example?

A

It is patterns that opposite of good practice. Example is Godobject where one object does everything, monolithic.

22
Q

What are Architectural Drivers?

A

Design forces that will influence the early design decisions that architects make. They need to be prioritized.

23
Q

What are ASRs?

A

Architecture significant requirements are business drivers translated.

24
Q

What is the difference between Functional, Non-Functional requirements and Constraints?

A

Functional: WHAT the system does
Non-Functional: HOW the system does it, also includes Quality Attributes
Constraints are what you must adhete to like laws and hardware requirements.

25
Why would you use MoSCOW
To prioritize requirements
26
What is a QA?
Measurable or testable property of a system
27
What are four ways to evaluate QAs?
Scenario-Based, Simulation, Mathematical modelin, experience-based
28
In QAS: What is stimulus and the source of stimulus?
Stimulus is a condition that require as response, an event The source is that generated it
29
In QAS: What is Environment?
In what mode the system was running when the stimulus started, example: normal operation, test, overloaded etc
30
In QAS: What is Response and response measure?
Response: What mitigation action as undertaken as result of the stimulus Measure: Measurement of the response that can be tested.
31
In QAS: What is artifact?
The part of the system that was stimulated.
32
In QAS: What are the two types of QAS?
General scenario do not belong to any system Concrete Scenario belongs to a particular system under particular conditions.
33
What are the most commonly observed problems when performance testing?
Bottlenecking and Poor Scalability
34
In performance testing: What is Bottlenecking?
This occurs when data flow is interrupted or halted because there is not enough capacity to handle the workload
35
In performance testing: What is poor scalability?
If the software cannot handle the desired amount of concurrent tasks unexpected behavior could happen
36
What are some architectural attributes related to Security?
Confidentiality, Integrity, Availability, Authentication, Auditable, Compliance & Privacy.
37
Describe conceptual integrity?
It is about creating consistent software. So that even if multiple people worked on the software if seems like it was created by one mind guiding all the work.
38
In testability: What is an Oracle and what is it used for?
Oracle is the internal state, input and output when performing a test on a program. It is used for evaluation and with either be approved or rejected.
39
What are the strengths of Layered Architecture?
Cost and Simplicity
40
What are the weaknesses of Layered Architecture?
Scalability, deployability, fault tolerance and more.
41
What are the strengths of Pipeline AS?
Cost and Simplicity
42
What are the weaknesses of Pipeline AS?
Scalability and elasticity(the ability to increase or decrease the resources used)
43
What are the strengths of Mikrokernel AS?
Foremost cost but also quite strong in simplicity, modularity, deployability and testability
44
What are the weaknesses of Mikrokernel AS?
Elasticity and Scalability
45
What are the strenghts and weaknesses of Service-Based AS?
Overall really strong in most areas but weak in elasticity.