Chapter 1 Flashcards

1
Q

What is unit testing?

A

testing small code units like a class

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

What is integration testing?

A

testing larger units like a set of classes

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

What is performance testing?

A

checking system performance under specific loads

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

What is usability testing?

A

evaluating the usability of the system’s user interface

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

What is the difference between Verification and Validation?

A

Verification: Are we building the product right? That is, according to the specification we received.

Validation: Are we building the right product? That is, the one that meets the customer or market needs.

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

What are the the five types of maintenance that can be performed on software?

A

Corrective maintenance aims to address bugs reported by users or other developers.

Preventive maintenance focuses on addressing latent bugs that haven’t yet caused failures observed by users.

Adaptive maintenance aims to adjust a system in response to changes in its environment, including technological changes, new legislative rules, integration requirements with other systems, or customization demands from new customers.

Refactoring involves changes in a program that don’t change its external behavior but improve its design and ease of maintenance

Evolutionary maintenance is performed to add new features to a system or to significantly enhance existing ones.

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

What is the Waterfall process?

A

Also known as a plan-driven process, Waterfall proposes a construction sequence where each stage flows sequentially, like a waterfall. These stages are requirement specification, analysis, design, implementation, and testing. After these stages, the system is released for production.

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

External versus internal quality?

A

External quality refers to factors that can be evaluated without examining the source code.

Internal quality relates to properties associated with the system’s implementation

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

What are Casual Systems

A

Casual systems, or Type C systems, are not under pressure for high-quality performance. They can tolerate minor bugs without jeopardizing their operation.

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

What are Acute Systems?

A

Acute systems, or Type A systems, where a single failure can have devastating consequences, including the loss of human lives.

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

What are Business Systems?

A

They cover a wide array of enterprise applications (like finance, human resources, logistics, and sales), various web-based systems, software libraries and frameworks, general-purpose applications (such as text editors and spreadsheets), and basic software systems (like compilers and IDEs).

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