Podcast
Questions and Answers
Which of the following is NOT one of the Seven Basic Tools of Quality?
Which of the following is NOT one of the Seven Basic Tools of Quality?
What is the main purpose of a control chart?
What is the main purpose of a control chart?
Which tool is used to collect and analyze data?
Which tool is used to collect and analyze data?
What is the purpose of a Pareto chart?
What is the purpose of a Pareto chart?
Signup and view all the answers
Which of the following is used to find the root cause of a problem?
Which of the following is used to find the root cause of a problem?
Signup and view all the answers
What is the purpose of the Seven Run Rule in quality control charts?
What is the purpose of the Seven Run Rule in quality control charts?
Signup and view all the answers
Which of the following is NOT a check for data faults according to the inspection checklist?
Which of the following is NOT a check for data faults according to the inspection checklist?
Signup and view all the answers
Which of the following is a check for control faults according to the inspection checklist?
Which of the following is a check for control faults according to the inspection checklist?
Signup and view all the answers
If character strings are used in a program, what should be explicitly assigned according to the data faults checklist?
If character strings are used in a program, what should be explicitly assigned according to the data faults checklist?
Signup and view all the answers
Which of the following is a check for interface faults according to the inspection checklist?
Which of the following is a check for interface faults according to the inspection checklist?
Signup and view all the answers
According to the inspection checklist, what should be checked for input/output faults?
According to the inspection checklist, what should be checked for input/output faults?
Signup and view all the answers
Which of the following is NOT a check listed in the inspection checklist?
Which of the following is NOT a check listed in the inspection checklist?
Signup and view all the answers
Which of the following is NOT a type of software fault?
Which of the following is NOT a type of software fault?
Signup and view all the answers
What is the primary purpose of program inspections?
What is the primary purpose of program inspections?
Signup and view all the answers
Which of the following statements about inspection checklists is TRUE?
Which of the following statements about inspection checklists is TRUE?
Signup and view all the answers
What is the primary reason why testing alone is not sufficient for preventing software defects?
What is the primary reason why testing alone is not sufficient for preventing software defects?
Signup and view all the answers
Which of the following is a goal of quality assurance?
Which of the following is a goal of quality assurance?
Signup and view all the answers
What type of software fault is most likely to be identified during program inspections?
What type of software fault is most likely to be identified during program inspections?
Signup and view all the answers
Study Notes
Quality Control and Assurance
- The main outputs of quality control are: acceptance decisions, rework, and process adjustments.
Seven Basic Tools of Quality
- Flowcharts: graphic displays of process logic and flow, used to analyze problem occurrence and process improvement.
- Run Charts: display the history and pattern of variation of a process over time.
- Scatter Diagrams: show the relationship between two variables.
- Histograms: bar graphs of a distribution of variables.
- Pareto Charts: histograms that help identify and prioritize problem areas.
- Control Charts: graphic displays of data that illustrate process results over time, used to prevent defects.
- Cause-and-Effect Diagrams: aka fishbone or Ishikawa diagrams, used to find the root cause of a problem.
Inspection Checklists
- Data faults:
- Are all program variables initialized before their values are used?
- Have all constants been named?
- Should the upper bound of arrays be equal to the size of the array or Size -1?
- Is a delimiter explicitly assigned for character strings?
- Is there any possibility of buffer overflow?
- Control faults:
- Is the condition correct for each conditional statement?
- Is each loop certain to terminate?
- Are compound statements correctly bracketed?
- Are all possible cases accounted for in case statements?
- Is a break included after each case in case statements?
- Input/output faults:
- Are all input variables used?
- Are all output variables assigned a value before they are output?
- Can unexpected inputs cause corruption?
- Interface faults:
- Do all function and method calls have the correct number of parameters?
- Do formal and actual parameter types match?
- Are the parameters in the right order?
- Storage faults management:
- If components access shared memory, do they have the same model of the shared memory structure?
- If a linked structure is modified, have all links been correctly reassigned?
- If dynamic storage is used, has space been allocated correctly?
Quality Assurance
- Quality assurance includes all activities related to satisfying relevant quality standards for a project.
- Another goal of quality assurance is continuous quality improvement.
- Performing Quality Assurance through:
- Benchmarking
- Quality audits
Testing
- Many IT professionals think of testing as a stage that comes near the end of IT product development.
- Types of Tests:
- Unit testing
- Integration testing
- System testing
- User acceptance testing
Testing Limitations
- Watts S.Humphrey defines a software defect as anything that must be changed before delivery of the program.
- Testing does not sufficiently prevent software defects because it does not cover all possible scenarios.
Program Inspections
- These are peer reviews where engineers examine the source of a system to discover anomalies and defects.
- Inspections do not require execution of a system, so they can be used before implementation.
Studying That Suits You
Use AI to generate personalized quizzes and flashcards to suit your learning preferences.
Description
This quiz covers topics related to software inspection checklist, including initialization, constant naming, loop termination, array bounds, data faults, control faults, and more. Test your knowledge on ensuring the quality of software through thorough inspections.