nerdexam
BCS-ISEB

ISEB-SWTINT1 · Question #20

Which of the following is MOST characteristic of specification based (black-box) techniques?

The correct answer is C. Test cases are derived systematically from models of the system. Specification-based (black-box) testing derives test cases from models or specifications of the system - requirements documents, use cases, decision tables, equivalence partitions - without looking at the internal code, making C correct. Option D is the opposite: deriving tests…

Test Techniques

Question

Which of the following is MOST characteristic of specification based (black-box) techniques?

Options

  • ATest cases can be easily automated.
  • BTest cases are independent of each other.
  • CTest cases are derived systematically from models of the system .
  • DTest cases are derived systematically from the delivered code.

How the community answered

(13 responses)
  • A
    8% (1)
  • B
    15% (2)
  • C
    77% (10)

Explanation

Specification-based (black-box) testing derives test cases from models or specifications of the system - requirements documents, use cases, decision tables, equivalence partitions - without looking at the internal code, making C correct. Option D is the opposite: deriving tests from source code is the definition of white-box (structural) testing. Options A and B describe incidental properties that may or may not be true of black-box tests, but neither is characteristic of the technique itself - black-box tests can be manual or hard to automate, and they can absolutely overlap or depend on shared test data.

Memory tip: Think "black box = you can't see inside" - you only have the spec (the external description) to work from, so all test cases must come from that model of expected behavior.

Topics

#black box testing#specification-based techniques#test derivation#technique characteristics

Community Discussion

No community discussion yet for this question.

Full ISEB-SWTINT1 Practice