223k views
1 vote
Which of the following are strategies of Blackbox Testing:

A.) Test Automation

B.) Equivalence Class Partitioning

C.) Boundary Value Analysis

D.) Decision Table Testing

E.) Acceptance Testing

F.) Regression Testing

1 Answer

4 votes

Final answer:

The blackbox testing strategies from the list given are Equivalence Class Partitioning, Boundary Value Analysis, and Decision Table Testing. These methods focus on testing software functionality without considering internal code structure. Test Automation, Acceptance Testing, and Regression Testing are also testing strategies but are not exclusive to blackbox testing.

Step-by-step explanation:

The strategies of Blackbox Testing mentioned in the question are all valid test design techniques used within the scope of software testing. These strategies help testers to create test cases with a focus on the functionality of the software rather than its internal code structure.

  • B.) Equivalence Class Partitioning is a blackbox testing method which divides the input data of a software unit into partition of data from which test cases can be derived.
  • C.) Boundary Value Analysis is a blackbox testing method that involves creating test cases based on the boundaries of input data ranges.
  • D.) Decision Table Testing is a blackbox test design technique that uses a table to represent combinations of inputs and their corresponding system behaviors.

Test Automation, Acceptance Testing, and Regression Testing are also testing strategies, but they are not exclusive to blackbox testing since they can be applied to both blackbox and whitebox testing methods.

User Savinger
by
9.0k points