What is the name of the place where program code execution is halted?
- pausepoint
- exitpoint
- stoppoint
- breakpoint
Explanation & Hint:
A breakpoint is a designated point in the code where the program execution is intentionally paused to allow for debugging, analysis, and inspection of variables, state, and flow of the program. Developers can set breakpoints in their code to halt the execution at specific locations to examine the program’s behavior and troubleshoot issues. |