Multiple choice technology testing

What does a break point do?

  1. A. Stops test execution at the specified step, after executing that step

  2. B. Stops test execution at the specified step, before executing that step.

  3. C. Pauses test execution at the specified step, after executing that step

  4. D. Pauses test execution at the specified step, before executing that step.

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

A breakpoint pauses test execution immediately before the specified step runs, allowing you to inspect variable values, call stacks, and application state at that exact moment. This is distinct from stopping execution - pausing allows you to resume debugging from that point.