L7 Flashcards

1
Q

What is software evolution?

A

The process of developing, maintaining, and updating software for various reasons.

This process is complex and entails inherent risks.

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

What is refactoring?

A

The process of restructuring an existing code, altering its internal structure without changing its external behavior.

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

What are the outcomes of software evolution?

A
  • Bugs are fixed
  • Useless code removed
  • Bad code improved
  • Complexity is reduced
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What are the indicators of software devolvement?

A
  • Band-aid fixes
  • Shortcuts
  • Poorly thought out design
  • Undocumented changes
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

List examples of improving readability in refactoring.

A
  • Removing magic constants
  • Making variable names more informative
  • Decomposing overly long methods
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What are some ways to improve understandability in refactoring?

A
  • Reorganizing the class hierarchy
  • Removing dead or unused code
  • Fixing design
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What methods can be employed to improve flexibility in refactoring?

A
  • Improving interfaces
  • Improving APIs
  • Changing architecture
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

When is refactoring needed? (list at least three reasons)

A
  • Code is duplicated
  • A method is too long
  • A loop is too long or too deeply nested
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Fill in the blank: Code _______ are indicators of potential issues or areas of improvement in software code.

A

[smells]

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

What does refactoring at the data level involve?

A

Restructuring the way data is organized or represented in the code.

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

What is refactoring at the statement level focused on?

A

Improving individual statements or expressions within methods.

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

What does refactoring at the routine level involve?

A

Restructuring entire methods or routines for improved readability and maintainability.

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

What does refactoring at the class level entail?

A

Restructuring and improving the organization of code within a class.

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

What does refactoring at the system level involve?

A

Making changes to the overall architecture and structure components of a software.

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