DEBUGGING Quiz.md - brainchildservices/curriculum GitHub Wiki

1.Searching for (and fixing) errors in programming code is called ------?

Ans: code debugging.
  1. You set -------- wherever you want to pause debugger execution

    Ans: breakpoints

3.If your browser supports debugging, you can use ------------to display JavaScript values in the debugger window

Ans: console.log() 
  1. When you've got a specific line of code that you want to pause on, use a ------------

    Ans: line-of-code breakpoint

  2. The 3 parts of the Sources panel UI

    Ans: File Navigator pane, Code Editor pane, JavaScript Debugging pane

  3. activate debugging in your browser with the -------- key

    Ans: F12

  4. The debugger statement stops the execution of JavaScript and calls-------.

    Ans: the debugging function

  5. Debugging is the process of testing, finding, and reducing --------- in computer programs.

    Ans: bugs (errors)

  6. The Visual Studio debugger helps you observe the -------- behavior of your program and find problems.

    Ans: run-time

  7. The ------------ is where you debug JavaScript.

    Ans: Sources panel