What types of errors are missed by Black-Box Testing and can be uncovered by White-Box Testing ?
-
Behavioral Errors
-
Logic Errors
-
Performance Errors
-
Typographical Errors
-
Both B and D
E
Correct answer
Explanation
Black-box testing examines software behavior from the outside without viewing internal code, so it cannot detect logic errors in code flow or typographical mistakes within the implementation. White-box testing, which inspects the internal structure, can uncover these hidden defects that don't manifest as behavioral failures.