You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: learn-pr/wwl-language/review-principles-code-debugging-exception-handling-c-sharp/3-examine-code-debug.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ quiz:
23
23
explanation: "Correct. A debugger is a software tool uses an analytical approach to observe and control the execution flow of a program."
24
24
- content: "A program that generates code automatically based on user input."
25
25
isCorrect: false
26
-
explanation: "Incorrect. Debuggers are used isolate logic issues in an application. Debuggers are not used to generate code."
26
+
explanation: "Incorrect. Debuggers are used to isolate logic issues in an application. Debuggers are not used to generate code."
27
27
- content: "A tool that helps developers write their code faster."
28
28
isCorrect: false
29
29
explanation: "Incorrect. Although code debuggers speed the debugging process and help to identify issues, they do not help with writing code."
Copy file name to clipboardExpand all lines: learn-pr/wwl-language/review-principles-code-debugging-exception-handling-c-sharp/4-examine-code-exception.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ quiz:
20
20
choices:
21
21
- content: "To ignore errors that occur in a program."
22
22
isCorrect: false
23
-
explanation: "Incorrect. Exceptions should be handled in code to correct error conditions if possible."
23
+
explanation: "Incorrect. Exceptions should be handled in code to correct an error conditions if possible."
24
24
- content: "To take corrective action when an error occurs in a program."
25
25
isCorrect: true
26
26
explanation: "Correct. The purpose of catching an exception is to take corrective action when an error occurs."
0 commit comments