DEBUGGING Quiz.md - brainchildservices/curriculum GitHub Wiki
1.Searching for (and fixing) errors in programming code is called ------?
Ans: code debugging.
-
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()
-
When you've got a specific line of code that you want to pause on, use a ------------
Ans: line-of-code breakpoint
-
The 3 parts of the Sources panel UI
Ans: File Navigator pane, Code Editor pane, JavaScript Debugging pane
-
activate debugging in your browser with the -------- key
Ans: F12
-
The debugger statement stops the execution of JavaScript and calls-------.
Ans: the debugging function
-
Debugging is the process of testing, finding, and reducing --------- in computer programs.
Ans: bugs (errors)
-
The Visual Studio debugger helps you observe the -------- behavior of your program and find problems.
Ans: run-time
-
The ------------ is where you debug JavaScript.
Ans: Sources panel