Common Factors of Software Quality
Modifiability
Efforts needed for modification, fault removal or for environmental change.
Stability
Risk of unexpected effect of modifications.
Testability
Efforts needed for validating the modified software.
Usability
Ability of the software to be easily operated by a given user in a given environment.
Performance
Response time for given throughput.
Availability
Combination of Maturity, Fault tolerance and Recoverability for certain point in time.
Main Factors and Sub Factors of Software Quality
Main Factors | Sub Factors | Quality Assurance Method |
Maintainability | Changeability | Modifiability |
Stability | Stability | |
Testability | Testability | |
Usability | Operability | Usability |
Efficiency | Time Behavior | Performance |
Reliability | Combination of Maturity, Fault tolerance and Recoverability | Availability |
Trade-offs between Software Quality Factors
- Inappropriate use of resources can reduce availability. For example, holding a particular resource for a long time without using it may cause resource starvation and an inability to handle additional concurrent user requests.
- Lack of documentation may delay management and future upgrades in the software.
- Increased memory consumption may result in reduced performance.
- Increased database server processing may result in reduced throughput.
- Complex applications with many processing permutations are not tested consistently, perhaps because automated or granular testing cannot be performed if the application has a monolithic design. Design systems to be modular to support testing.
- If the code base is large or complex, the refactoring of the codes will be difficult.
- Lack of tracing ability will leads to difficulty in modifiability.