In .......... the test plan is developed directly from the program…
2024
In .......... the test plan is developed directly from the program specification and several test cases are developed from it.
- A.
White Box Testing
- B.
Black Box Testing
- C.
Grey Box Testing
- D.
Blue Box Testing
Attempted by 33 students.
Show answer & explanation
Correct answer: B
In software engineering, Black Box Testing (also known as functional or specification-based testing) focuses strictly on the functional requirements and inputs/outputs of the software component.
Key Characteristics:
Basis for Test Cases: Since the tester cannot see the internal code, the program specification document serves as the sole foundation for designing the test plan and test cases.
Objective: It checks if the system behaves exactly as specified by the business logic or user requirements.
Techniques: Common methods include Boundary Value Analysis (BVA), Equivalence Partitioning, and Decision Table testing, all of which map inputs directly to expected outcomes derived from specifications.