Multiple choice technology testing

Which of the following is NOT a black box technique:

  1. Equivalence partitioning

  2. State transition testing

  3. LCSAJ

  4. Syntax testing

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

Black box techniques test software without examining internal code structure. Equivalence partitioning, state transition testing, and syntax testing are all black box techniques - they focus on inputs, outputs, and external behavior. LCSAJ (Linear Code Sequence and Jump) is a white box structural testing technique that requires analyzing code paths, branches, and control flow within the program's source code.