L5 Flashcards

1
Q

What are the key characteristics of architecture?

A
  • Scalability
  • Elasticity
  • Maintainability
  • Consistency
  • Teamwork
  • Portability
  • Modularity
  • Flexibility
  • Reusability
  • Interoperability
  • Simplicity
  • Deployability
  • Performance
  • Security
  • Reliability
  • Testability
  • Fault Tolerance
  • Update
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Define Monolithic Architecture.

A

A traditional software development model that uses one code base to perform multiple business functions.

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

What is Layered Architecture?

A

Each layer provides specific functionalities and services to the layers above it.

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

Layered Architecture is good for which scenarios?

A
  • Demand maintainability
  • Budget constraints
  • Small and simple applications
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What does Pipeline Architecture structure?

A

Structures the processing of data or tasks as a series of connected processing stages.

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

What is the role of Pipes in Pipeline Architecture?

A
  • Form the communication channel between filters
  • Typically unidirectional and point-to-point between filters
  • Payload may contain any data structure, but small amounts are favored
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What are Filters in Pipeline Architecture?

A
  • Self-contained
  • Independent from other filters
  • Generally stateless
  • Should perform one task only
  • Composite tasks should be handled by a sequence of filters
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is the function of a Producer in Pipeline Architecture?

A

The starting point of a process, outbound only, sometimes called the source.

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

What does a Transformer do in Pipeline Architecture?

A

Accepts input, optionally performs transformation on some or all of the data, then forwards it to the outbound pipe.

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

True or False: A Tester in Pipeline Architecture accepts input and tests one or more criteria.

A

True

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

What is the role of a Consumer in Pipeline Architecture?

A

The termination point for the pipeline flow, sometimes persisting the final result to a database or displaying results on a user interface.

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