Match List I with List II List I (Testing Technique) List II (Description) A.…
2025
Match List I with List II
List I (Testing Technique) | List II (Description) |
A. Equivalence Partitioning | I. Measures independent paths in code |
B. Boundary Value Analysis | II. Divides input into valid/invalid sets |
C. Cyclomatic Complexity | III. Focuses on limits of input ranges |
D. Decision Table Testing | IV. In which a number of combinations of actions are tested under varying sets of conditions |
Choose the correct answer from the options given below:
- A.
A-II, B-III, C-I, D-IV
- B.
A-II, B-III, C-IV, D-I
- C.
A-III, B-II, C-I, D-IV
- D.
A-IV, B-II, C-I, D-III
Attempted by 62 students.
Show answer & explanation
Correct answer: A
Correct matching: Equivalence Partitioning → Divides input into valid/invalid sets; Boundary Value Analysis → Focuses on limits of input ranges; Cyclomatic Complexity → Measures independent paths in code; Decision Table Testing → Tests combinations of actions under varying sets of conditions.
Equivalence Partitioning: Divides the input domain into equivalence classes (valid and invalid). Test one representative value from each class to reduce redundant tests while maintaining coverage.
Boundary Value Analysis: Focuses on values at and near the edges of equivalence classes because errors frequently occur at boundaries.
Cyclomatic Complexity: A software metric that counts independent execution paths in code; helps determine the minimum number of tests needed for path coverage.
Decision Table Testing: Uses a table of conditions and actions to ensure various combinations of inputs and corresponding outputs are tested.
A video solution is available for this question — log in and enroll to watch it.