Multiple choice technology testing

What is the shortcut key to clear all Breakpoints?

  1. Shift+Ctrl+F9

  2. Ctrl+Shift+F9

  3. Alt+Shift+F9

  4. Alt+Ctrl+F9

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

Ctrl+Shift+F9 is the standard keyboard shortcut in most IDEs and debugging tools to clear all breakpoints at once. Shift+Ctrl+F9 is functionally the same, but Ctrl+Shift+F9 is the conventional order. Alt combinations are used for other debugging commands.

AI explanation

In Visual Studio's default keyboard scheme, Ctrl+Shift+F9 is the shortcut bound to 'Delete All Breakpoints', clearing every breakpoint in the solution at once. This is distinct from F9 (toggle a breakpoint) or other F9-based combinations used for different breakpoint actions.