212k views
3 votes
Is structured programming all you need to achieve high software quality?

1) True
2) False

1 Answer

6 votes

Final answer:

Structured programming is beneficial for organizing code, but alone is not sufficient for achieving high software quality. Other factors like testing, design patterns, and project management are crucial as well.

Step-by-step explanation:

The answer to the question is False. Structured programming is a programming paradigm aimed at improving the clarity, quality, and development time of a computer program by making extensive use of the subprogram concept. It is a technique that helps with the organization of code but is not the only factor in achieving high software quality. High software quality also depends on various other factors including proper requirement analysis, design principles, coding standards, testing procedures, and maintenance practices. While structured programming helps in reducing complexity and making the code more readable and maintainable, it must be combined with comprehensive testing, good documentation, software design patterns, and adherence to coding standards to ensure high quality. Additionally, factors such as project management, collaborative work practices, and continuous integration play a significant role in the overall quality of software.

User Dotdot
by
9.0k points