Skip to content

Commit 9bf282b

Browse files
authored
changed files by pdets auto publish service, publishid[12b2614f-92bd-4eda-a396-4cf0602373b5] and do [publish].
1 parent e654465 commit 9bf282b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

learn-pr/wwl-language/review-principles-code-debugging-exception-handling-c-sharp/3-examine-code-debug.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ quiz:
2323
explanation: "Correct. A debugger is a software tool uses an analytical approach to observe and control the execution flow of a program."
2424
- content: "A program that generates code automatically based on user input."
2525
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."
2727
- content: "A tool that helps developers write their code faster."
2828
isCorrect: false
2929
explanation: "Incorrect. Although code debuggers speed the debugging process and help to identify issues, they do not help with writing code."

learn-pr/wwl-language/review-principles-code-debugging-exception-handling-c-sharp/4-examine-code-exception.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ quiz:
2020
choices:
2121
- content: "To ignore errors that occur in a program."
2222
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."
2424
- content: "To take corrective action when an error occurs in a program."
2525
isCorrect: true
2626
explanation: "Correct. The purpose of catching an exception is to take corrective action when an error occurs."

learn-pr/wwl-language/review-principles-code-debugging-exception-handling-c-sharp/5-knowledge-check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ quiz:
3232
explanation: "Correct. A debugger is a software tool uses an analytical approach to observe and control the execution flow of a program."
3333
- content: "A program that generates code automatically based on user input."
3434
isCorrect: false
35-
explanation: "Incorrect. Debuggers are used isolate logic issues in an application. They are not used to generate code."
35+
explanation: "Incorrect. Debuggers are used to isolate logic issues in an application. They are not used to generate code."
3636
- content: "A tool that helps developers write their code faster."
3737
isCorrect: false
3838
explanation: "Incorrect. Although code debuggers speed the debugging process and help to identify issues, they do not help with writing code."
@@ -51,7 +51,7 @@ quiz:
5151
choices:
5252
- content: "To ignore the errors that occur in a program."
5353
isCorrect: false
54-
explanation: "Incorrect. Exceptions should be handled in code to correct error conditions if possible."
54+
explanation: "Incorrect. Exceptions should be handled in code to correct an error conditions if possible."
5555
- content: "To generate other exceptions in a program."
5656
isCorrect: false
5757
explanation: "Incorrect. Exceptions can be thrown when an issue or error is detected, but the `catch` clause is not a tool for generating errors."

0 commit comments

Comments
 (0)