Multiple choice technology testing

If there are three Test Objects A,B,C During testing it is observed that : X no. of defects are found in Test Object A 145 % of X defects are found in Test Object B 120% of X defects are found in Test Object C Which Test Object need to be given more attention for further testing?

  1. Test Object A

  2. Test Object B

  3. Test Object C

  4. None

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

Comparing the defect counts: Test Object A has X defects, B has 145% of X (1.45X), and C has 120% of X (1.20X). Since Test Object B has the highest number of defects (1.45X > 1.20X > X), it potentially has more undiscovered issues and should be given more testing attention.

AI explanation

Given Test Object A has X defects, Test Object B has 145% of X (1.45X), and Test Object C has 120% of X (1.2X), ranking by defect count gives B > C > A. Since Test Object B has the highest number of defects relative to the others, it indicates the area of code/functionality most prone to problems and therefore warrants the most additional testing attention. A has the fewest (baseline X) and C, while elevated, still trails B. So 'Test Object B' is the mathematically correct answer; A and C are wrong simply because they have fewer defects than B, and 'None' ignores the given data entirely.