Explain the attributes/quality of good software.

 The software product has a number of associated attributes that reflect the quality of that software. These attributes are not directly concerned with what the software does. They reflect its behavior while executing and the structure and organization of the source program and associated documentation.

The essential attributes/quality of good software are discussed below:

a) Maintainability

   The software must evolve to meet changing needs of customers. It is called maintainability. So, Software should be written in such a way that it may evolve to meet the changing needs of customers. This is a critical attribute because software change is an inevitable consequence of a changing business environment.

b) Dependability

       The dependability of software is a property of software that reflects trustworthiness. It is the degree of confidence a user has that the system will operate they expect and the system will not fail in normal use. Software dependability has a range of characteristics, including reliability, security, and safety. Dependable Software should not cause physical or economic damage in the event of system failure.

c) Efficiency

     The software should not make wasteful use of system resources such as memory and processor cycles. Efficiency, therefore, includes- responsiveness, processing time, memory utilization, etc.

d) Usability

       The software must be usable without wasting the effort of the user for whom it is designed. This means that it should have an appropriate user interface and adequate documentation.


Comments

Popular posts from this blog

What are different steps used in JDBC? Write down a small program showing all steps.

Suppose that a data warehouse for Big-University consists of the following four dimensions: student, course, semester, and instructor, and two measures count and avg_grade. When at the lowest conceptual level (e.g., for a given student, course, semester, and instructor combination), the avg_grade measure stores the actual course grade of the student. At higher conceptual levels, avg_grade stores the average grade for the given combination. a) Draw a snowflake schema diagram for the data warehouse. b) Starting with the base cuboid [student, course, semester, instructor], what specific OLAP operations (e.g., roll-up from semester to year) should one perform in order to list the average grade of CS courses for each BigUniversity student. c) If each dimension has five levels (including all), such as “student < major < status < university < all”, how many cuboids will this cube contain (including the base and apex cuboids)?

Discuss classification or taxonomy of virtualization at different levels.