Purchase Solution

Types of Software Defects

Not what you're looking for?

Ask Custom Question

List and describe three types of software defects that inspection can detect.

Purchase this Solution

Solution Preview

Below is a checklist in addition to:
- Comparing the source code against a standard or a guideline and
- Making sure that the code meets the project's design requirement

* Data Reference Errors
These errors are caused by using a variable, constant, array, string, or record that has not been properly initialized for how it is being used and referenced.
- Is an uninitialized variable referenced? Looking for omissions is as important as looking for errors
- Are array and string subscripts integer values and are they within the bounds of the array's or string's dimension?
- Look for "off by one" errors in indexing operations or subscript references to arrays.
- Is a variable used where a constant would work better, for example, when checking the boundary of an array?
- Is a variable ever assigned a value that is of a different type than the variable?
- Is memory allocated for referenced pointers?
- If a data structure is referenced in multiple functions or subroutines, is the structure defined identically in each one?

* Data Declaration Errors
These bugs are ...

Purchase this Solution


Free BrainMass Quizzes
Word 2010: Table of Contents

Ever wondered where a Table of Contents in a Word document comes from? Maybe you need a refresher on the topic? This quiz will remind you of the keywords and options used when working with a T.O.C. in Word 2010.

Word 2010: Tables

Have you never worked with Tables in Word 2010? Maybe it has been a while since you have used a Table in Word and you need to brush up on your skills. Several keywords and popular options are discussed as you go through this quiz.

C++ Operators

This quiz tests a student's knowledge about C++ operators.

Basic Computer Terms

We use many basic terms like bit, pixel in our usual conversations about computers. Are we aware of what these mean? This little quiz is an attempt towards discovering that.

Javscript Basics

Quiz on basics of javascript programming language.