Chapter 2.2 - Anti-patterns in Software engineering Flashcards

1
Q

What is an anti-pattern?

A

A commonly occurring solution to a problem that generates negative consequences.

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

What are some common root causes for anti-patterns?

A

Insufficient communication, unfulfilled requirements, insufficient testing, cost overruns, and schedule slips.

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

What is the impact of “Haste” in software development?

A

Leads to hasty decisions, compromising software quality.

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

The “7 Deadly Sins” in Software Practice

A

Haste, Apathy, Narrow-Mindness, Ignorance, Pride, Avarice (Excessive Complexity), Sloth

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

How does “Apathy” contribute to anti-patterns?

A

Developers do not care about problems and refuse to attempt solutions.

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

What is “Narrow-Mindedness” in software engineering?

A

Refusal to use widely known solutions, sticking to familiar technologies.

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

What does “Sloth” mean in software development?

A

Making poor decisions based on easy answers, leading to costly mistakes later.

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

What is “Avarice (Excessive Complexity)”?

A

Over-modeling and addiction to complexity, ignoring simplicity.

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

How does “Ignorance” affect software projects?

A

Failure to seek understanding, leading to bad architectural choices.

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

What does “Pride (Hubris)” lead to in software engineering?

A

Refusing external solutions and overconfidence in one’s own work.

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

What is the “Blob” anti-pattern?

A

A single class monopolizes processing, while other classes only store data.

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

What are the typical causes of the “Blob” anti-pattern?

A

Lack of object-oriented architecture, inadequate architectural review, and incremental development without proper class separation.

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

How can the “Blob” anti-pattern be fixed?

A

Move behavior away from the Blob and distribute responsibilities across multiple classes.

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

What is the “Functional Decomposition” anti-pattern?

A

Implementing an object-oriented system using procedural-style coding.

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

How can the “Functional Decomposition” anti-pattern be avoided?

A

Define an analysis model, enforce proper class hierarchies, and ensure developers understand OOP principles.

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

What is the “Auto-generated Stovepipe” anti-pattern?

A

Occurs when legacy software is migrated to a distributed system without proper redesign.

17
Q

What are the key remedies for “Auto-generated Stovepipe”?

A

Redesign interfaces for distributed systems and use larger-grained data models.

18
Q

What is the “Golden Hammer” anti-pattern?

A

Overuse of a familiar tool or technology for every problem, even when it’s not appropriate.

19
Q

What causes the “Golden Hammer” anti-pattern?

A

Prior success with a particular tool, lack of exposure to alternatives, and reliance on proprietary features.

20
Q

How can organizations avoid the “Golden Hammer” anti-pattern?

A

Invest in professional development, explore new technologies, and commit to open systems.

21
Q

What is the “Design by Committee” anti-pattern?

A

A design created by too many stakeholders, leading to excessive complexity and inefficiency.

22
Q

What are some causes of “Design by Committee”?

A

No designated architect, ineffective meetings, gold plating, and trying to satisfy everyone.

23
Q

How can “Design by Committee” be prevented?

A

Use structured meeting facilitation, assign clear roles, and limit design groups to small teams.