Which formula correctly calculates defect density in a software project?
Think about how many defects appear relative to the size of the software.
Defect density measures how many defects exist per unit size of software, helping to understand quality relative to software size.
What does defect leakage indicate in software testing?
Consider defects that escape the testing process and reach the users.
Defect leakage measures the number of defects missed during testing but found by users, indicating gaps in testing.
Given the following data, what is the Defect Removal Efficiency (DRE)?
DRE = (Defects found before release) / (Defects found before release + Defects found after release)
Defects found before release = 120
Defects found after release = 30
Calculate the ratio of defects found before release to total defects found.
DRE = 120 / (120 + 30) = 120 / 150 = 0.80.
Which assertion correctly describes the defect arrival rate during testing?
Think about how quickly defects are discovered over time.
Defect arrival rate measures how many defects are found in a given time period during testing.
Which option shows an incorrect calculation of a defect metric?
Review the formula for Defect Removal Efficiency carefully.
Defect Removal Efficiency is the ratio of defects found before release to total defects found, not defects found after release.