L11 Flashcards

1
Q

What are development patterns?

A

A range of patterns and practices that are commonly used in the software development process.

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

What are design patterns?

A

Reusable solutions to common problems that arise in software design and architecture.

  • Common vocabulary
  • proven solutions
  • community acceptance
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What are creational patterns?

A

Deal with the process of object creation, providing mechanisms for class instantiation or object composition

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

What are structural patterns?

A

Focus on simplifying the composition of classes and objects to be combined to form larger structures.

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

What are behavioral patterns?

A

Focus on the interaction and communication between objects.

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

What are solid principles?

A

Single Responsability

Open Close Principle

Liksov Substitution

Interface Segregation

Dependency Inversion

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

What is single responsibility?

A

The purpose of a class should be well defined, making it easier to understand and maintain.

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

What is an open close principle?

A

Software entities should be designed to allow for easy extension without modifying existing code.

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

Liskov Substitution

A

subtypes should be substitutable for their base types.

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

What is interface segregation?

A

Classes should not be forced to implement interfaces they do not use, preventing the introduction of unwanted dependencies.

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

What is dependance inversion?

A

High level modules and low level modules should both depend on abstractions.

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