Multiple choice technology testing

Condition Testing is a control structure Testing Technique where the criteria used to design test cases is that they

  1. Rely on Path Based Testing

  2. Exercise the Logical Conditions in a Program module

  3. Select Test Paths based on the locations and uses of variables

  4. Focus on Testing the Validity of loop constructs

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

Condition testing is a white-box technique that specifically targets logical conditions (compound boolean expressions, if statements, loops) within program code. It ensures all possible combinations of conditions in decision points are tested to reveal potential logic flaws in conditional statements.