diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md index 7c50ac42745..04d809176cc 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Add Looping Logic to Your Code Using the `do`-`while` and `while` Statements in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- A developer needs to iterate through an array of items to find one that matches a certain criteria. Which is the best iteration statement for this purpose? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md index f6641f0316f..d0087ce5be8 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Branch the Flow of Code Using the `switch`-`case` Construct in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- What is the purpose of the `break` keyword? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md index 265d870150e..b34b20dcdd7 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Develop Branching and Looping Structures in C# challenge project on Microsoft Learn. Then, answer the question below. + ## --text-- A developer needs to create an iteration statement. Under what condition is a `while` statement a better choice than a `do` statement? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md index daa95972023..bf5a4084719 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md @@ -14,21 +14,25 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Control Variable Scope and Logic Using Code Blocks in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- -Which of the following describes the affect of a `using` statement? +Which of the following statements is true about showing/removing the curly braces for code blocks associated with an `if` statement? ## --answers-- -Affects only the first code block in the code file. +The curly braces can't be removed from the code block for `else if` and `else` statements. --- -Affects only the current code block in the code file. +If the curly braces are removed from the code blocks of an `if-elseif-else`, the white space must also be removed. --- -Affects all of the code in the code file. +Always choose a style that improves readability. ## --video-solution-- diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md index 1f1c72e0c8a..3f503f69e32 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Evaluate Boolean Expressions to Make Decisions in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- Which of the following lines of code is a valid use of the conditional operator? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md index 7cfc12d242d..f23006f2793 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Develop Conditional Branching and Looping Structures in C# guided project on Microsoft Learn. Then, answer the question below. + ## --text-- When is it appropriate to use a `switch-case` construct rather than a `if-elseif-else` construct? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md index fbc5beccffd..29f7fbe4ca9 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Iterate Through a Code Block Using the `for` Statement in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- Which of the following `for` statements is correct? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md index 1a0f1c91668..597a1daa754 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Add Decision Logic to Your Code Using `if`, `else`, and `else if` Statements in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- Which of the choices below is not a valid operator in C#? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md index 3ba95b9e155..aeeed01382f 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Call Methods from the .NET Class Library Using C# module on Microsoft Learn. Then, answer the question below. + ## --text-- What is an object? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md index 2fa7a6ca39e..4124a3e48d0 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Develop `foreach` and `if`-`elseif`-`else` Structures to Process Array Data in C# challenge project on Microsoft Learn. Then, answer the question below. + ## --text-- A developer is working with two other developers to update a collection of applications. The developers will use code comments during the update process. Which of the following describes an appropriate use of code comments? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md index 6dba95ceb0e..ff048d90565 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Create Readable Code with Conventions, Whitespace, and Comments in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- Which of the following is a bad reason to use a code comment? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md index d27cf0cd1e9..94f87df9df4 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Develop `foreach` and `if`-`elseif`-`else` Structures to Process Array Data in C# guided project on Microsoft Learn. Then, answer the question below. + ## --text-- A developer writes an application that uses a `foreach` loop to iterate through an array containing 20 elements. After the application is complete, the developer learns that the array must be updated to include 40 elements. The application needs to examine all 40 array elements. Which of the following items describes the required code update? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md index 2b823ab1657..293d196cf6f 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Install and Configure Visual Studio Code module on Microsoft Learn. Then, answer the question below. + ## --text-- Which of the following choices provides the best description of an Integrated Development Environment (IDE)? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md index e6c229032ca..2e1bc53cae6 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Store and Iterate Through Sequences of Data Using Arrays and the `foreach` Statement in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- Which of the following foreach statements is syntactically correct? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md index 74a50b662e2..1f9c05bfa10 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Create a Mini-Game challenge project on Microsoft Learn. Then, answer the question below. + ## --text-- A developer wants to create a method that returns a value in an array. Which of the following options would be a good choice for a method signature? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md index 6a3cec26d7c..f30799e881f 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Create C# Methods that Return Values module on Microsoft Learn. Then, answer the question below. + ## --text-- Which of the following options correctly returns a `string` value? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md index 4a74949d76a..c576ee4c155 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Create C# Methods with Parameters module on Microsoft Learn. Then, answer the question below. + ## --text-- Given the method signature, diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md index 67cf7ef2173..aea8d011c19 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Plan a Petting Zoo Visit guided project on Microsoft Learn. Then, answer the question below. + ## --text-- What is the purpose of defining an optional parameter in a method? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md index 0a1a690df22..c7bccb05699 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Write Your First C# Method module on Microsoft Learn. Then, answer the question below. + ## --text-- Which of the following correctly declares a method? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md index d2a01cef8e0..52415dc17c0 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Debug a C# Console Application Using Visual Studio Code challenge project on Microsoft Learn. Then, answer the question below. + ## --text-- Which of the following options can be used set a breakpoint in Visual Studio Code? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md index ca5a39cb5ac..3a43bedeeff 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Create and Throw Exceptions in C# Console Applications module on Microsoft Learn. Then, answer the question below. + ## --text-- When should a method throw an exception? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md index 51518624ab9..c96c6dbf3d0 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Debug and Handle Exceptions in a C# Console Application Using Visual Studio Code guided project on Microsoft Learn. Then, answer the question below. + ## --text-- When is an `ArgumentOutOfRangeException` exception thrown? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md index 264cafc40f0..a437297321d 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Implement Exception Handling in C# Console Applications module on Microsoft Learn. Then, answer the question below. + ## --text-- When is an `ArrayTypeMismatchException` exception thrown? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md index 9690146dbdd..cf989a73210 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Implement the Visual Studio Code Debugging Tools for C# module on Microsoft Learn. Then, answer the question below. + ## --text-- Which section of the RUN AND DEBUG view is used to track the current point of execution within the running application? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md index 5082edd0fba..fb54c916c41 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Review the Principles of Code Debugging and Exception Handling module on Microsoft Learn. Then, answer the question below. + ## --text-- What is the relationship between the type of exception and the information it contains? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md index ae6090709b9..57357fa507f 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Work with Variable Data in C# challenge project on Microsoft Learn. Then, answer the question below. + ## --text-- To sort a string array, why is it important to use the `String.Trim()` method on each array element before sorting? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md index 9a352f99813..cfc6e5f6417 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Choose the Correct Data Type in Your C# Code module on Microsoft Learn. Then, answer the question below. + ## --text-- A piece of code must store whole numeric values between negative and positive `1,000,000`. Which data type should you choose? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md index 40188ab92c1..7e3cccdbf6c 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Convert Data Types Using Casting and Conversion Techniques in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- What type of action is being performed when changing a `float` into an `int`? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md index 727c09bd909..25db424abb8 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Format Alphanumeric Data for Presentation in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- For the C# code `Console.WriteLine("C110".PadLeft(6, '0'));`, which is the expected output? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md index 7e2fccfbd59..41a67d95996 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Work with Variable Data in C# guided project on Microsoft Learn. Then, answer the question below. + ## --text-- For the code `decimal.TryParse(numberString, out myConvert))` when the type of `numberString` is a String. diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md index 0c355ebc15d..7a75db01628 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Modify the Content of Strings Using Built-In String Data Type Methods in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- Which method finds the next index of either the `-` char, the `=` char, or the `_` char? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md index 9e5f8277216..f51f67bd1d7 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Perform Operations on Arrays Using Helper Methods in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- Which method changes the order of items in an `string` array? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md index 2fa4818f4d3..7a7836123bb 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Calculate and Print Student Grades guided project on Microsoft Learn. Then, answer the question below. + ## --text-- What is wrong with the following code? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md index a7e0bd988c2..f4d5d576477 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Calculate Final GPA guided project on Microsoft Learn. Then, answer the question below. + ## --text-- Suppose `decimal gradePointAverage = 3.99872831m;`. diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md index 874e5cd5650..09ea0a4fd28 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Perform Basic Operations on Numbers in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- What is the value of the following result? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md index f4d39f5bbca..8fe6df7466b 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Perform Basic String Formatting in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- Which of the following lines of code correctly uses string interpolation assuming that the variable `value` is a string? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md index c75f54c2d88..8c1bb0619d3 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Store and Retrieve Data Using Literal and Variable Values in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- Which of the following lines of code creates a variable correctly? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md index 1295cf64070..c2b06ef0c32 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Write Your First C# Code module on Microsoft Learn. Then, answer the question below. + ## --text-- What is the difference between `Console.Write` and `Console.WriteLine`? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md index 7c50ac42745..04d809176cc 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Add Looping Logic to Your Code Using the `do`-`while` and `while` Statements in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- A developer needs to iterate through an array of items to find one that matches a certain criteria. Which is the best iteration statement for this purpose? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md index f6641f0316f..d0087ce5be8 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Branch the Flow of Code Using the `switch`-`case` Construct in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- What is the purpose of the `break` keyword? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md index 265d870150e..b34b20dcdd7 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Develop Branching and Looping Structures in C# challenge project on Microsoft Learn. Then, answer the question below. + ## --text-- A developer needs to create an iteration statement. Under what condition is a `while` statement a better choice than a `do` statement? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md index daa95972023..bf5a4084719 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md @@ -14,21 +14,25 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Control Variable Scope and Logic Using Code Blocks in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- -Which of the following describes the affect of a `using` statement? +Which of the following statements is true about showing/removing the curly braces for code blocks associated with an `if` statement? ## --answers-- -Affects only the first code block in the code file. +The curly braces can't be removed from the code block for `else if` and `else` statements. --- -Affects only the current code block in the code file. +If the curly braces are removed from the code blocks of an `if-elseif-else`, the white space must also be removed. --- -Affects all of the code in the code file. +Always choose a style that improves readability. ## --video-solution-- diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md index 1f1c72e0c8a..3f503f69e32 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Evaluate Boolean Expressions to Make Decisions in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- Which of the following lines of code is a valid use of the conditional operator? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md index 7cfc12d242d..f23006f2793 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Develop Conditional Branching and Looping Structures in C# guided project on Microsoft Learn. Then, answer the question below. + ## --text-- When is it appropriate to use a `switch-case` construct rather than a `if-elseif-else` construct? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md index fbc5beccffd..29f7fbe4ca9 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Iterate Through a Code Block Using the `for` Statement in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- Which of the following `for` statements is correct? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md index 1a0f1c91668..597a1daa754 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Add Decision Logic to Your Code Using `if`, `else`, and `else if` Statements in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- Which of the choices below is not a valid operator in C#? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md index 3ba95b9e155..aeeed01382f 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Call Methods from the .NET Class Library Using C# module on Microsoft Learn. Then, answer the question below. + ## --text-- What is an object? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md index 2fa7a6ca39e..4124a3e48d0 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Develop `foreach` and `if`-`elseif`-`else` Structures to Process Array Data in C# challenge project on Microsoft Learn. Then, answer the question below. + ## --text-- A developer is working with two other developers to update a collection of applications. The developers will use code comments during the update process. Which of the following describes an appropriate use of code comments? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md index 6dba95ceb0e..ff048d90565 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Create Readable Code with Conventions, Whitespace, and Comments in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- Which of the following is a bad reason to use a code comment? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md index d27cf0cd1e9..94f87df9df4 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Develop `foreach` and `if`-`elseif`-`else` Structures to Process Array Data in C# guided project on Microsoft Learn. Then, answer the question below. + ## --text-- A developer writes an application that uses a `foreach` loop to iterate through an array containing 20 elements. After the application is complete, the developer learns that the array must be updated to include 40 elements. The application needs to examine all 40 array elements. Which of the following items describes the required code update? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md index 2b823ab1657..293d196cf6f 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Install and Configure Visual Studio Code module on Microsoft Learn. Then, answer the question below. + ## --text-- Which of the following choices provides the best description of an Integrated Development Environment (IDE)? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md index e6c229032ca..2e1bc53cae6 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Store and Iterate Through Sequences of Data Using Arrays and the `foreach` Statement in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- Which of the following foreach statements is syntactically correct? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md index 74a50b662e2..1f9c05bfa10 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Create a Mini-Game challenge project on Microsoft Learn. Then, answer the question below. + ## --text-- A developer wants to create a method that returns a value in an array. Which of the following options would be a good choice for a method signature? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md index 6a3cec26d7c..f30799e881f 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Create C# Methods that Return Values module on Microsoft Learn. Then, answer the question below. + ## --text-- Which of the following options correctly returns a `string` value? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md index 4a74949d76a..c576ee4c155 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Create C# Methods with Parameters module on Microsoft Learn. Then, answer the question below. + ## --text-- Given the method signature, diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md index 67cf7ef2173..aea8d011c19 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Plan a Petting Zoo Visit guided project on Microsoft Learn. Then, answer the question below. + ## --text-- What is the purpose of defining an optional parameter in a method? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md index 0a1a690df22..c7bccb05699 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Write Your First C# Method module on Microsoft Learn. Then, answer the question below. + ## --text-- Which of the following correctly declares a method? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md index d2a01cef8e0..52415dc17c0 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Debug a C# Console Application Using Visual Studio Code challenge project on Microsoft Learn. Then, answer the question below. + ## --text-- Which of the following options can be used set a breakpoint in Visual Studio Code? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md index ca5a39cb5ac..3a43bedeeff 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Create and Throw Exceptions in C# Console Applications module on Microsoft Learn. Then, answer the question below. + ## --text-- When should a method throw an exception? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md index 51518624ab9..c96c6dbf3d0 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Debug and Handle Exceptions in a C# Console Application Using Visual Studio Code guided project on Microsoft Learn. Then, answer the question below. + ## --text-- When is an `ArgumentOutOfRangeException` exception thrown? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md index 264cafc40f0..a437297321d 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Implement Exception Handling in C# Console Applications module on Microsoft Learn. Then, answer the question below. + ## --text-- When is an `ArrayTypeMismatchException` exception thrown? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md index 9690146dbdd..cf989a73210 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Implement the Visual Studio Code Debugging Tools for C# module on Microsoft Learn. Then, answer the question below. + ## --text-- Which section of the RUN AND DEBUG view is used to track the current point of execution within the running application? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md index 5082edd0fba..fb54c916c41 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Review the Principles of Code Debugging and Exception Handling module on Microsoft Learn. Then, answer the question below. + ## --text-- What is the relationship between the type of exception and the information it contains? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md index ae6090709b9..57357fa507f 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Work with Variable Data in C# challenge project on Microsoft Learn. Then, answer the question below. + ## --text-- To sort a string array, why is it important to use the `String.Trim()` method on each array element before sorting? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md index 9a352f99813..cfc6e5f6417 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Choose the Correct Data Type in Your C# Code module on Microsoft Learn. Then, answer the question below. + ## --text-- A piece of code must store whole numeric values between negative and positive `1,000,000`. Which data type should you choose? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md index 40188ab92c1..7e3cccdbf6c 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Convert Data Types Using Casting and Conversion Techniques in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- What type of action is being performed when changing a `float` into an `int`? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md index 727c09bd909..25db424abb8 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Format Alphanumeric Data for Presentation in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- For the C# code `Console.WriteLine("C110".PadLeft(6, '0'));`, which is the expected output? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md index 7e2fccfbd59..41a67d95996 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Work with Variable Data in C# guided project on Microsoft Learn. Then, answer the question below. + ## --text-- For the code `decimal.TryParse(numberString, out myConvert))` when the type of `numberString` is a String. diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md index 0c355ebc15d..7a75db01628 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Modify the Content of Strings Using Built-In String Data Type Methods in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- Which method finds the next index of either the `-` char, the `=` char, or the `_` char? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md index 9e5f8277216..f51f67bd1d7 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Perform Operations on Arrays Using Helper Methods in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- Which method changes the order of items in an `string` array? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md index 2fa4818f4d3..7a7836123bb 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Calculate and Print Student Grades guided project on Microsoft Learn. Then, answer the question below. + ## --text-- What is wrong with the following code? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md index a7e0bd988c2..f4d5d576477 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Calculate Final GPA guided project on Microsoft Learn. Then, answer the question below. + ## --text-- Suppose `decimal gradePointAverage = 3.99872831m;`. diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md index 874e5cd5650..09ea0a4fd28 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Perform Basic Operations on Numbers in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- What is the value of the following result? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md index f4d39f5bbca..8fe6df7466b 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Perform Basic String Formatting in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- Which of the following lines of code correctly uses string interpolation assuming that the variable `value` is a string? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md index c75f54c2d88..8c1bb0619d3 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Store and Retrieve Data Using Literal and Variable Values in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- Which of the following lines of code creates a variable correctly? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md index 84732620b7f..c6cdbd10e15 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md @@ -14,6 +14,10 @@ dashedName: write-your-first-c-sharp-code # --question-- +## --assignment-- + +Complete the Write Your First C# Code module on Microsoft Learn. Then, answer the question below. + ## --text-- `Console.Write` 和 `Console.WriteLine`有什麼區別? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md index 7c50ac42745..04d809176cc 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Add Looping Logic to Your Code Using the `do`-`while` and `while` Statements in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- A developer needs to iterate through an array of items to find one that matches a certain criteria. Which is the best iteration statement for this purpose? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md index f6641f0316f..d0087ce5be8 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Branch the Flow of Code Using the `switch`-`case` Construct in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- What is the purpose of the `break` keyword? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md index 265d870150e..b34b20dcdd7 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Develop Branching and Looping Structures in C# challenge project on Microsoft Learn. Then, answer the question below. + ## --text-- A developer needs to create an iteration statement. Under what condition is a `while` statement a better choice than a `do` statement? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md index daa95972023..bf5a4084719 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md @@ -14,21 +14,25 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Control Variable Scope and Logic Using Code Blocks in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- -Which of the following describes the affect of a `using` statement? +Which of the following statements is true about showing/removing the curly braces for code blocks associated with an `if` statement? ## --answers-- -Affects only the first code block in the code file. +The curly braces can't be removed from the code block for `else if` and `else` statements. --- -Affects only the current code block in the code file. +If the curly braces are removed from the code blocks of an `if-elseif-else`, the white space must also be removed. --- -Affects all of the code in the code file. +Always choose a style that improves readability. ## --video-solution-- diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md index 1f1c72e0c8a..3f503f69e32 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Evaluate Boolean Expressions to Make Decisions in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- Which of the following lines of code is a valid use of the conditional operator? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md index 7cfc12d242d..f23006f2793 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Develop Conditional Branching and Looping Structures in C# guided project on Microsoft Learn. Then, answer the question below. + ## --text-- When is it appropriate to use a `switch-case` construct rather than a `if-elseif-else` construct? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md index fbc5beccffd..29f7fbe4ca9 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Iterate Through a Code Block Using the `for` Statement in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- Which of the following `for` statements is correct? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md index 1a0f1c91668..597a1daa754 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Add Decision Logic to Your Code Using `if`, `else`, and `else if` Statements in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- Which of the choices below is not a valid operator in C#? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md index 3ba95b9e155..aeeed01382f 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Call Methods from the .NET Class Library Using C# module on Microsoft Learn. Then, answer the question below. + ## --text-- What is an object? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md index 2fa7a6ca39e..4124a3e48d0 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Develop `foreach` and `if`-`elseif`-`else` Structures to Process Array Data in C# challenge project on Microsoft Learn. Then, answer the question below. + ## --text-- A developer is working with two other developers to update a collection of applications. The developers will use code comments during the update process. Which of the following describes an appropriate use of code comments? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md index 6dba95ceb0e..ff048d90565 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Create Readable Code with Conventions, Whitespace, and Comments in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- Which of the following is a bad reason to use a code comment? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md index d27cf0cd1e9..94f87df9df4 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Develop `foreach` and `if`-`elseif`-`else` Structures to Process Array Data in C# guided project on Microsoft Learn. Then, answer the question below. + ## --text-- A developer writes an application that uses a `foreach` loop to iterate through an array containing 20 elements. After the application is complete, the developer learns that the array must be updated to include 40 elements. The application needs to examine all 40 array elements. Which of the following items describes the required code update? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md index 2b823ab1657..293d196cf6f 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Install and Configure Visual Studio Code module on Microsoft Learn. Then, answer the question below. + ## --text-- Which of the following choices provides the best description of an Integrated Development Environment (IDE)? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md index e6c229032ca..2e1bc53cae6 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Store and Iterate Through Sequences of Data Using Arrays and the `foreach` Statement in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- Which of the following foreach statements is syntactically correct? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md index 74a50b662e2..1f9c05bfa10 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Create a Mini-Game challenge project on Microsoft Learn. Then, answer the question below. + ## --text-- A developer wants to create a method that returns a value in an array. Which of the following options would be a good choice for a method signature? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md index 6a3cec26d7c..f30799e881f 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Create C# Methods that Return Values module on Microsoft Learn. Then, answer the question below. + ## --text-- Which of the following options correctly returns a `string` value? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md index 4a74949d76a..c576ee4c155 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Create C# Methods with Parameters module on Microsoft Learn. Then, answer the question below. + ## --text-- Given the method signature, diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md index 67cf7ef2173..aea8d011c19 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Plan a Petting Zoo Visit guided project on Microsoft Learn. Then, answer the question below. + ## --text-- What is the purpose of defining an optional parameter in a method? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md index 0a1a690df22..c7bccb05699 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Write Your First C# Method module on Microsoft Learn. Then, answer the question below. + ## --text-- Which of the following correctly declares a method? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md index d2a01cef8e0..52415dc17c0 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Debug a C# Console Application Using Visual Studio Code challenge project on Microsoft Learn. Then, answer the question below. + ## --text-- Which of the following options can be used set a breakpoint in Visual Studio Code? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md index ca5a39cb5ac..3a43bedeeff 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Create and Throw Exceptions in C# Console Applications module on Microsoft Learn. Then, answer the question below. + ## --text-- When should a method throw an exception? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md index 51518624ab9..c96c6dbf3d0 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Debug and Handle Exceptions in a C# Console Application Using Visual Studio Code guided project on Microsoft Learn. Then, answer the question below. + ## --text-- When is an `ArgumentOutOfRangeException` exception thrown? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md index 264cafc40f0..a437297321d 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Implement Exception Handling in C# Console Applications module on Microsoft Learn. Then, answer the question below. + ## --text-- When is an `ArrayTypeMismatchException` exception thrown? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md index 9690146dbdd..cf989a73210 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Implement the Visual Studio Code Debugging Tools for C# module on Microsoft Learn. Then, answer the question below. + ## --text-- Which section of the RUN AND DEBUG view is used to track the current point of execution within the running application? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md index 5082edd0fba..fb54c916c41 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Review the Principles of Code Debugging and Exception Handling module on Microsoft Learn. Then, answer the question below. + ## --text-- What is the relationship between the type of exception and the information it contains? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md index ae6090709b9..57357fa507f 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Work with Variable Data in C# challenge project on Microsoft Learn. Then, answer the question below. + ## --text-- To sort a string array, why is it important to use the `String.Trim()` method on each array element before sorting? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md index 9a352f99813..cfc6e5f6417 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Choose the Correct Data Type in Your C# Code module on Microsoft Learn. Then, answer the question below. + ## --text-- A piece of code must store whole numeric values between negative and positive `1,000,000`. Which data type should you choose? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md index 40188ab92c1..7e3cccdbf6c 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Convert Data Types Using Casting and Conversion Techniques in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- What type of action is being performed when changing a `float` into an `int`? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md index 727c09bd909..25db424abb8 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Format Alphanumeric Data for Presentation in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- For the C# code `Console.WriteLine("C110".PadLeft(6, '0'));`, which is the expected output? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md index 7e2fccfbd59..41a67d95996 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Work with Variable Data in C# guided project on Microsoft Learn. Then, answer the question below. + ## --text-- For the code `decimal.TryParse(numberString, out myConvert))` when the type of `numberString` is a String. diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md index 0c355ebc15d..7a75db01628 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Modify the Content of Strings Using Built-In String Data Type Methods in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- Which method finds the next index of either the `-` char, the `=` char, or the `_` char? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md index 9e5f8277216..f51f67bd1d7 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Perform Operations on Arrays Using Helper Methods in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- Which method changes the order of items in an `string` array? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md index 2fa4818f4d3..7a7836123bb 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Calculate and Print Student Grades guided project on Microsoft Learn. Then, answer the question below. + ## --text-- What is wrong with the following code? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md index a7e0bd988c2..f4d5d576477 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Calculate Final GPA guided project on Microsoft Learn. Then, answer the question below. + ## --text-- Suppose `decimal gradePointAverage = 3.99872831m;`. diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md index 874e5cd5650..09ea0a4fd28 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Perform Basic Operations on Numbers in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- What is the value of the following result? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md index f4d39f5bbca..8fe6df7466b 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Perform Basic String Formatting in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- Which of the following lines of code correctly uses string interpolation assuming that the variable `value` is a string? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md index c75f54c2d88..8c1bb0619d3 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Store and Retrieve Data Using Literal and Variable Values in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- Which of the following lines of code creates a variable correctly? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md index 10007a7f68a..c9df73357cb 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md @@ -14,6 +14,10 @@ dashedName: write-your-first-c-sharp-code # --question-- +## --assignment-- + +Complete the Write Your First C# Code module on Microsoft Learn. Then, answer the question below. + ## --text-- `Console.Write` 和 `Console.WriteLine`有什么区别? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md index 7c50ac42745..04d809176cc 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Add Looping Logic to Your Code Using the `do`-`while` and `while` Statements in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- A developer needs to iterate through an array of items to find one that matches a certain criteria. Which is the best iteration statement for this purpose? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md index f6641f0316f..d0087ce5be8 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Branch the Flow of Code Using the `switch`-`case` Construct in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- What is the purpose of the `break` keyword? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md index 265d870150e..b34b20dcdd7 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Develop Branching and Looping Structures in C# challenge project on Microsoft Learn. Then, answer the question below. + ## --text-- A developer needs to create an iteration statement. Under what condition is a `while` statement a better choice than a `do` statement? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md index daa95972023..bf5a4084719 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md @@ -14,21 +14,25 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Control Variable Scope and Logic Using Code Blocks in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- -Which of the following describes the affect of a `using` statement? +Which of the following statements is true about showing/removing the curly braces for code blocks associated with an `if` statement? ## --answers-- -Affects only the first code block in the code file. +The curly braces can't be removed from the code block for `else if` and `else` statements. --- -Affects only the current code block in the code file. +If the curly braces are removed from the code blocks of an `if-elseif-else`, the white space must also be removed. --- -Affects all of the code in the code file. +Always choose a style that improves readability. ## --video-solution-- diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md index 1f1c72e0c8a..3f503f69e32 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Evaluate Boolean Expressions to Make Decisions in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- Which of the following lines of code is a valid use of the conditional operator? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md index 7cfc12d242d..f23006f2793 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Develop Conditional Branching and Looping Structures in C# guided project on Microsoft Learn. Then, answer the question below. + ## --text-- When is it appropriate to use a `switch-case` construct rather than a `if-elseif-else` construct? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md index fbc5beccffd..29f7fbe4ca9 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Iterate Through a Code Block Using the `for` Statement in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- Which of the following `for` statements is correct? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md index 1a0f1c91668..597a1daa754 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Add Decision Logic to Your Code Using `if`, `else`, and `else if` Statements in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- Which of the choices below is not a valid operator in C#? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md index 3ba95b9e155..aeeed01382f 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Call Methods from the .NET Class Library Using C# module on Microsoft Learn. Then, answer the question below. + ## --text-- What is an object? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md index 2fa7a6ca39e..4124a3e48d0 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Develop `foreach` and `if`-`elseif`-`else` Structures to Process Array Data in C# challenge project on Microsoft Learn. Then, answer the question below. + ## --text-- A developer is working with two other developers to update a collection of applications. The developers will use code comments during the update process. Which of the following describes an appropriate use of code comments? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md index 6dba95ceb0e..ff048d90565 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Create Readable Code with Conventions, Whitespace, and Comments in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- Which of the following is a bad reason to use a code comment? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md index d27cf0cd1e9..94f87df9df4 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Develop `foreach` and `if`-`elseif`-`else` Structures to Process Array Data in C# guided project on Microsoft Learn. Then, answer the question below. + ## --text-- A developer writes an application that uses a `foreach` loop to iterate through an array containing 20 elements. After the application is complete, the developer learns that the array must be updated to include 40 elements. The application needs to examine all 40 array elements. Which of the following items describes the required code update? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md index 2b823ab1657..293d196cf6f 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Install and Configure Visual Studio Code module on Microsoft Learn. Then, answer the question below. + ## --text-- Which of the following choices provides the best description of an Integrated Development Environment (IDE)? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md index e6c229032ca..2e1bc53cae6 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Store and Iterate Through Sequences of Data Using Arrays and the `foreach` Statement in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- Which of the following foreach statements is syntactically correct? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md index 74a50b662e2..1f9c05bfa10 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Create a Mini-Game challenge project on Microsoft Learn. Then, answer the question below. + ## --text-- A developer wants to create a method that returns a value in an array. Which of the following options would be a good choice for a method signature? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md index 6a3cec26d7c..f30799e881f 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Create C# Methods that Return Values module on Microsoft Learn. Then, answer the question below. + ## --text-- Which of the following options correctly returns a `string` value? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md index 4a74949d76a..c576ee4c155 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Create C# Methods with Parameters module on Microsoft Learn. Then, answer the question below. + ## --text-- Given the method signature, diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md index 67cf7ef2173..aea8d011c19 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Plan a Petting Zoo Visit guided project on Microsoft Learn. Then, answer the question below. + ## --text-- What is the purpose of defining an optional parameter in a method? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md index 0a1a690df22..c7bccb05699 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Write Your First C# Method module on Microsoft Learn. Then, answer the question below. + ## --text-- Which of the following correctly declares a method? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md index d2a01cef8e0..52415dc17c0 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Debug a C# Console Application Using Visual Studio Code challenge project on Microsoft Learn. Then, answer the question below. + ## --text-- Which of the following options can be used set a breakpoint in Visual Studio Code? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md index ca5a39cb5ac..3a43bedeeff 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Create and Throw Exceptions in C# Console Applications module on Microsoft Learn. Then, answer the question below. + ## --text-- When should a method throw an exception? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md index 51518624ab9..c96c6dbf3d0 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Debug and Handle Exceptions in a C# Console Application Using Visual Studio Code guided project on Microsoft Learn. Then, answer the question below. + ## --text-- When is an `ArgumentOutOfRangeException` exception thrown? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md index 264cafc40f0..a437297321d 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Implement Exception Handling in C# Console Applications module on Microsoft Learn. Then, answer the question below. + ## --text-- When is an `ArrayTypeMismatchException` exception thrown? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md index 9690146dbdd..cf989a73210 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Implement the Visual Studio Code Debugging Tools for C# module on Microsoft Learn. Then, answer the question below. + ## --text-- Which section of the RUN AND DEBUG view is used to track the current point of execution within the running application? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md index 5082edd0fba..fb54c916c41 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Review the Principles of Code Debugging and Exception Handling module on Microsoft Learn. Then, answer the question below. + ## --text-- What is the relationship between the type of exception and the information it contains? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md index ae6090709b9..57357fa507f 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Work with Variable Data in C# challenge project on Microsoft Learn. Then, answer the question below. + ## --text-- To sort a string array, why is it important to use the `String.Trim()` method on each array element before sorting? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md index 9a352f99813..cfc6e5f6417 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Choose the Correct Data Type in Your C# Code module on Microsoft Learn. Then, answer the question below. + ## --text-- A piece of code must store whole numeric values between negative and positive `1,000,000`. Which data type should you choose? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md index 40188ab92c1..7e3cccdbf6c 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Convert Data Types Using Casting and Conversion Techniques in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- What type of action is being performed when changing a `float` into an `int`? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md index 727c09bd909..25db424abb8 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Format Alphanumeric Data for Presentation in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- For the C# code `Console.WriteLine("C110".PadLeft(6, '0'));`, which is the expected output? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md index 7e2fccfbd59..41a67d95996 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Work with Variable Data in C# guided project on Microsoft Learn. Then, answer the question below. + ## --text-- For the code `decimal.TryParse(numberString, out myConvert))` when the type of `numberString` is a String. diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md index 0c355ebc15d..7a75db01628 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Modify the Content of Strings Using Built-In String Data Type Methods in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- Which method finds the next index of either the `-` char, the `=` char, or the `_` char? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md index 9e5f8277216..f51f67bd1d7 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Perform Operations on Arrays Using Helper Methods in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- Which method changes the order of items in an `string` array? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md index 2fa4818f4d3..7a7836123bb 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Calculate and Print Student Grades guided project on Microsoft Learn. Then, answer the question below. + ## --text-- What is wrong with the following code? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md index a7e0bd988c2..f4d5d576477 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Calculate Final GPA guided project on Microsoft Learn. Then, answer the question below. + ## --text-- Suppose `decimal gradePointAverage = 3.99872831m;`. diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md index 874e5cd5650..09ea0a4fd28 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Perform Basic Operations on Numbers in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- What is the value of the following result? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md index f4d39f5bbca..8fe6df7466b 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Perform Basic String Formatting in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- Which of the following lines of code correctly uses string interpolation assuming that the variable `value` is a string? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md index c75f54c2d88..8c1bb0619d3 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Store and Retrieve Data Using Literal and Variable Values in C# module on Microsoft Learn. Then, answer the question below. + ## --text-- Which of the following lines of code creates a variable correctly? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md index 1295cf64070..c2b06ef0c32 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md @@ -14,6 +14,10 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll # --question-- +## --assignment-- + +Complete the Write Your First C# Code module on Microsoft Learn. Then, answer the question below. + ## --text-- What is the difference between `Console.Write` and `Console.WriteLine`? diff --git a/curriculum/challenges/german/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148defa9c01520fb9d178a0.md b/curriculum/challenges/german/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148defa9c01520fb9d178a0.md index 1ec1ce4e1a7..9d9c43aa670 100644 --- a/curriculum/challenges/german/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148defa9c01520fb9d178a0.md +++ b/curriculum/challenges/german/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148defa9c01520fb9d178a0.md @@ -7,7 +7,7 @@ dashedName: step-61 # --description-- -While `ul`/`li` elements are great at providing bullets for list items, your radio buttons don't need them. Du kannst das Aussehen der Aufzählungszeichen mit der `list-style`-Eigenschaft steuern. For example you can turn your bullets into circles with the following: +Auch wenn `ul`/`li`-Elemente ideal für die Bereitstellung von Aufzählungszeichen für Listenelemente sind, benötigen deine Radio Buttons sie nicht. Du kannst das Aussehen der Aufzählungszeichen mit der `list-style`-Eigenschaft steuern. Beispielsweise werden deine Aufzählungszeichen wie folgt in Kreise umgewandelt: ```css ul { @@ -15,23 +15,23 @@ ul { } ``` -Remove the default styling for the `.answers-list` items by setting its style to `none`, and remove the unordered list padding. +Entferne das Standardstyling für die `.answers-list`-Elemente, indem du den Stil auf `none` setzt, und entferne das Padding von der unsortierten Liste. # --hints-- -You should use the `.answers-list` selector. +Du solltest den `.answers-list`-Selektor verwenden. ```js assert.exists(new __helpers.CSSHelp(document).getStyle('.answers-list')); ``` -You should give `.answers-list` a `list-style` of `none`. +Du solltest `.answers-list` ein `list-style` von `none` zuweisen. ```js assert.equal(new __helpers.CSSHelp(document).getStyle('.answers-list')?.listStyle, 'none'); ``` -You should give `.answers-list` a `padding` of `0`. +Du solltest `.answers-list` ein `padding` von `0` zuweisen. ```js assert.equal(new __helpers.CSSHelp(document).getStyle('.answers-list')?.padding, '0px'); diff --git a/curriculum/challenges/german/14-responsive-web-design-22/learn-basic-css-by-building-a-cafe-menu/5f356ed6199b0cdef1d2be8f.md b/curriculum/challenges/german/14-responsive-web-design-22/learn-basic-css-by-building-a-cafe-menu/5f356ed6199b0cdef1d2be8f.md index 2fc15fe56cc..940b4ef2377 100644 --- a/curriculum/challenges/german/14-responsive-web-design-22/learn-basic-css-by-building-a-cafe-menu/5f356ed6199b0cdef1d2be8f.md +++ b/curriculum/challenges/german/14-responsive-web-design-22/learn-basic-css-by-building-a-cafe-menu/5f356ed6199b0cdef1d2be8f.md @@ -7,7 +7,7 @@ dashedName: step-26 # --description-- -So far you have been using type and id selectors to style elements. However, it is more common to use a different selector to style your elements. +Bisher hast du Typ- und ID-Selektoren für verschiedene Style-Elemente verwendet. However, it is more common to use a different selector to style your elements. Ein Klassenselektor ist durch einen Namen mit einem Punkt definiert, der sich direkt vor ihm befindet, wie folgendes Beispiel: diff --git a/curriculum/challenges/german/14-responsive-web-design-22/learn-css-colors-by-building-a-set-of-colored-markers/61695d1fbc003856628bf561.md b/curriculum/challenges/german/14-responsive-web-design-22/learn-css-colors-by-building-a-set-of-colored-markers/61695d1fbc003856628bf561.md index 67e05bc71b9..858802c7129 100644 --- a/curriculum/challenges/german/14-responsive-web-design-22/learn-css-colors-by-building-a-set-of-colored-markers/61695d1fbc003856628bf561.md +++ b/curriculum/challenges/german/14-responsive-web-design-22/learn-css-colors-by-building-a-set-of-colored-markers/61695d1fbc003856628bf561.md @@ -7,9 +7,9 @@ dashedName: step-4 # --description-- -To tell browsers how to encode characters on your page, set the `charset` to `utf-8`. `utf-8` is a universal character set that includes almost every character from all human languages. +Setze das `charset` auf `utf-8`, um den Browsern mitzuteilen, wie man Zeichen auf deiner Seite kodiert. `utf-8` ist ein universelles Zeichen-Set, das fast jedes Zeichen aller menschlichen Sprachen enthält. -Bette innerhalb des `head`-Elements ein `meta`-Element mit dem Attribut `charset` mit `utf-8` als Wert ein. Remember that `meta` elements are self-closing, and do not need a closing tag. +Bette innerhalb des `head`-Elements ein `meta`-Element mit dem Attribut `charset` mit `utf-8` als Wert ein. Denke daran, dass `meta`-Elemente selbstabschließend sind und kein abschließendes Tag benötigen. # --hints-- diff --git a/curriculum/challenges/german/14-responsive-web-design-22/learn-css-colors-by-building-a-set-of-colored-markers/619b74fa777a2b2473c94f82.md b/curriculum/challenges/german/14-responsive-web-design-22/learn-css-colors-by-building-a-set-of-colored-markers/619b74fa777a2b2473c94f82.md index 20b52c0da81..f486cf582d4 100644 --- a/curriculum/challenges/german/14-responsive-web-design-22/learn-css-colors-by-building-a-set-of-colored-markers/619b74fa777a2b2473c94f82.md +++ b/curriculum/challenges/german/14-responsive-web-design-22/learn-css-colors-by-building-a-set-of-colored-markers/619b74fa777a2b2473c94f82.md @@ -7,7 +7,7 @@ dashedName: step-45 # --description-- -Aktualisiere den CSS-Klassen-Selektor `.two`, sodass er die neue `green`-Klasse auswählt. And update the `.three` class selector so it targets the new `blue` class. +Aktualisiere den CSS-Klassen-Selektor `.two`, sodass er die neue `green`-Klasse auswählt. Aktualisiere auch den `.three`-Klassenselektor, sodass er die neue `blue`-Klasse auswählt. # --hints-- diff --git a/curriculum/challenges/german/14-responsive-web-design-22/learn-css-colors-by-building-a-set-of-colored-markers/619b761916dac02643940022.md b/curriculum/challenges/german/14-responsive-web-design-22/learn-css-colors-by-building-a-set-of-colored-markers/619b761916dac02643940022.md index c38f3872ce9..f1458bdece1 100644 --- a/curriculum/challenges/german/14-responsive-web-design-22/learn-css-colors-by-building-a-set-of-colored-markers/619b761916dac02643940022.md +++ b/curriculum/challenges/german/14-responsive-web-design-22/learn-css-colors-by-building-a-set-of-colored-markers/619b761916dac02643940022.md @@ -9,7 +9,7 @@ dashedName: step-46 A very common way to apply color to an element with CSS is with hexadecimal or hex values. Während Hex-Werte kompliziert klingen, sind sie in Wirklichkeit nur eine andere Form von RGB-Werten. -Hex color values start with a `#` character and take six characters from 0-9 and A-F. Das erste Zeichenpaar repräsentiert rot, das zweite Paar grün und das dritte blau. Zum Beispiel: `#4B5320`. +Hex-Farbwerte beginnen mit einem `#`-Zeichen und enden mit sechs Zeichen in Form von 0-9 und A-F. Das erste Zeichenpaar repräsentiert rot, das zweite Paar grün und das dritte blau. Zum Beispiel: `#4B5320`. Setze im `.green`-Klassenselektor die `background-color`-Eigenschaft auf einen Hex-Farbcode mit den Werten `00` für rot, `FF` für grün und `00` blau. diff --git a/curriculum/challenges/german/14-responsive-web-design-22/learn-css-flexbox-by-building-a-photo-gallery/615380dff67172357fcf0425.md b/curriculum/challenges/german/14-responsive-web-design-22/learn-css-flexbox-by-building-a-photo-gallery/615380dff67172357fcf0425.md index ea86ae6bd42..18c61533b7b 100644 --- a/curriculum/challenges/german/14-responsive-web-design-22/learn-css-flexbox-by-building-a-photo-gallery/615380dff67172357fcf0425.md +++ b/curriculum/challenges/german/14-responsive-web-design-22/learn-css-flexbox-by-building-a-photo-gallery/615380dff67172357fcf0425.md @@ -9,7 +9,7 @@ dashedName: step-11 Deine Bilder sind jetzt zu groß. -Create a `.gallery img` selector to target them. Give them all a `width` of `100%` and a `max-width` of `350px`. +Erstelle einen `.gallery img`-Selektor, um sie auszuwählen. Weise ihnen allen eine `width` von `100%` und eine `max-width` von `350px` zu. Setze ebenfalls die `height`-Eigenschaft auf `300px`, damit die Bilder eine einheitliche Größe haben. diff --git a/curriculum/challenges/german/14-responsive-web-design-22/learn-css-flexbox-by-building-a-photo-gallery/6153893900438b4643590367.md b/curriculum/challenges/german/14-responsive-web-design-22/learn-css-flexbox-by-building-a-photo-gallery/6153893900438b4643590367.md index 6fe4156eb6e..e6a52426a8c 100644 --- a/curriculum/challenges/german/14-responsive-web-design-22/learn-css-flexbox-by-building-a-photo-gallery/6153893900438b4643590367.md +++ b/curriculum/challenges/german/14-responsive-web-design-22/learn-css-flexbox-by-building-a-photo-gallery/6153893900438b4643590367.md @@ -9,7 +9,7 @@ dashedName: step-13 Richte deinen `.header`-Text mittig aus. Schreibe den Text in Großbuchstaben unter der Verwendung der `text-transform`Eigenschaft mit dem Wert `uppercase`. -Give it a padding of `32px` on all sides. Setze die Farbwerte des Hintergrundes auf `#0a0a23` und des Textes auf `#fff`. +Weise ihm auf allen Seiten ein Padding von `32px` zu. Setze die Farbwerte des Hintergrundes auf `#0a0a23` und des Textes auf `#fff`. Füge eine `border-bottom` mit `4px solid #fdb347` als Wert hinzu. diff --git a/curriculum/challenges/german/14-responsive-web-design-22/learn-css-flexbox-by-building-a-photo-gallery/615f171d05def3218035dc85.md b/curriculum/challenges/german/14-responsive-web-design-22/learn-css-flexbox-by-building-a-photo-gallery/615f171d05def3218035dc85.md index 0b5a7b8ed89..0c9d9ea294c 100644 --- a/curriculum/challenges/german/14-responsive-web-design-22/learn-css-flexbox-by-building-a-photo-gallery/615f171d05def3218035dc85.md +++ b/curriculum/challenges/german/14-responsive-web-design-22/learn-css-flexbox-by-building-a-photo-gallery/615f171d05def3218035dc85.md @@ -7,7 +7,7 @@ dashedName: step-12 # --description-- -Remove the margin from your body element, set the `font-family` to `sans-serif`, and give it a `background-color` of `#f5f6f7` as the value. +Entferne die Margin aus deinem body-Element, setze die `font-family` auf `sans-serif` und weise ihm eine `background-color` mit dem Wert `#f5f6f7` zu. # --hints-- diff --git a/curriculum/challenges/german/14-responsive-web-design-22/learn-css-flexbox-by-building-a-photo-gallery/6493bc0d99879635209565aa.md b/curriculum/challenges/german/14-responsive-web-design-22/learn-css-flexbox-by-building-a-photo-gallery/6493bc0d99879635209565aa.md index 418aedac0c0..e25bba449d9 100644 --- a/curriculum/challenges/german/14-responsive-web-design-22/learn-css-flexbox-by-building-a-photo-gallery/6493bc0d99879635209565aa.md +++ b/curriculum/challenges/german/14-responsive-web-design-22/learn-css-flexbox-by-building-a-photo-gallery/6493bc0d99879635209565aa.md @@ -9,7 +9,7 @@ dashedName: step-9 Das `border-box`-Größenmodell bewirkt das Gegenteil von `content-box`. Die Gesamtbreite des Elements, einschließlich des Paddings und Rands, entspricht der ausdrücklich festgelegten Breite. Der Inhalt des Elements wird verkleinert, um Platz für das Padding und den Rand zu schaffen. -Ändere die `box-sizing`-Eigenschaft zu `border-box`. Notice how your blue image borders now fit within your red gallery border. +Ändere die `box-sizing`-Eigenschaft zu `border-box`. Beachte, wie deine blauen Bildränder jetzt in deinen roten Galerierahmen passen. # --hints-- diff --git a/curriculum/challenges/german/14-responsive-web-design-22/learn-css-flexbox-by-building-a-photo-gallery/6494da0daf5df5197963671d.md b/curriculum/challenges/german/14-responsive-web-design-22/learn-css-flexbox-by-building-a-photo-gallery/6494da0daf5df5197963671d.md index b4c470053fa..edda7e90cc1 100644 --- a/curriculum/challenges/german/14-responsive-web-design-22/learn-css-flexbox-by-building-a-photo-gallery/6494da0daf5df5197963671d.md +++ b/curriculum/challenges/german/14-responsive-web-design-22/learn-css-flexbox-by-building-a-photo-gallery/6494da0daf5df5197963671d.md @@ -7,9 +7,9 @@ dashedName: step-8 # --description-- -Notice how the blue image border extends beyond the red gallery border. This is due to the way browsers calculate the size of container elements. +Beachte, wie der blaue Bildrand über den roten Galerierand hinausragt. Dies ist auf die Art und Weise zurückzuführen, wie Browser die Größe von Containerelementen berechnen. -The `box-sizing` property is used to set this behavior. Standardmäßig wird das `content-box`-Modell verwendet. With this model, when an element has a specific width, that width is calculated based only on the element's content. Padding- und Rand-Werte werden der Gesamtbreite hinzugefügt, so dass das Elemente wächst, um diese Werte aufzunehmen. +Die `box-sizing`-Eigenschaft wird verwendet, um dieses Verhalten festzulegen. Standardmäßig wird das `content-box`-Modell verwendet. With this model, when an element has a specific width, that width is calculated based only on the element's content. Padding- und Rand-Werte werden der Gesamtbreite hinzugefügt, so dass das Elemente wächst, um diese Werte aufzunehmen. Versuche, `box-sizing` auf `content-box` mit dem globalen `*`-Selektor festzulegen. Zu diesem Zeitpunkt wirst du keine Änderungen sehen, da du den Standardwert verwendest. diff --git a/curriculum/challenges/german/14-responsive-web-design-22/learn-css-transforms-by-building-a-penguin/61968e9243a4090cc805531c.md b/curriculum/challenges/german/14-responsive-web-design-22/learn-css-transforms-by-building-a-penguin/61968e9243a4090cc805531c.md index eec289eb74a..9af8a08c372 100644 --- a/curriculum/challenges/german/14-responsive-web-design-22/learn-css-transforms-by-building-a-penguin/61968e9243a4090cc805531c.md +++ b/curriculum/challenges/german/14-responsive-web-design-22/learn-css-transforms-by-building-a-penguin/61968e9243a4090cc805531c.md @@ -11,7 +11,7 @@ Entferne sowohl die horizontalen als auch die vertikalen Scrollbalken, indem du # --hints-- -Du solltest `body` einen `overflow` von `--fcc-expected--` geben. But found `--fcc-actual--`. +Du solltest `body` einen `overflow` von `--fcc-expected--` geben. Allerdings wurde `--fcc-actual--` gefunden. ```js assert.equal(new __helpers.CSSHelp(document).getStyle('body')?.overflow, 'hidden'); diff --git a/curriculum/challenges/german/14-responsive-web-design-22/learn-css-transforms-by-building-a-penguin/61969aa6acef5b12200f672e.md b/curriculum/challenges/german/14-responsive-web-design-22/learn-css-transforms-by-building-a-penguin/61969aa6acef5b12200f672e.md index bbbe2d62bd1..3ce9582713b 100644 --- a/curriculum/challenges/german/14-responsive-web-design-22/learn-css-transforms-by-building-a-penguin/61969aa6acef5b12200f672e.md +++ b/curriculum/challenges/german/14-responsive-web-design-22/learn-css-transforms-by-building-a-penguin/61969aa6acef5b12200f672e.md @@ -13,7 +13,7 @@ Füge über das `.penguin`-Element einen `div` mit einer `class` von `left-mount # --hints-- -Du solltest einen neuen `div` innerhalb des `body` hinzufügen. Expected to see `--fcc-expected--` `div` elements, but found `--fcc-actual--`. +Du solltest einen neuen `div` innerhalb des `body` hinzufügen. Es sind `--fcc-expected--` `div`-Elemente erwartet worden, aber es wurde `--fcc-actual--` gefunden. ```js assert.equal(document.querySelectorAll('body > div')?.length, 3); diff --git a/curriculum/challenges/german/14-responsive-web-design-22/learn-css-transforms-by-building-a-penguin/61969d66cfcdba137d021558.md b/curriculum/challenges/german/14-responsive-web-design-22/learn-css-transforms-by-building-a-penguin/61969d66cfcdba137d021558.md index 0b49bf3f697..7d7743efc1b 100644 --- a/curriculum/challenges/german/14-responsive-web-design-22/learn-css-transforms-by-building-a-penguin/61969d66cfcdba137d021558.md +++ b/curriculum/challenges/german/14-responsive-web-design-22/learn-css-transforms-by-building-a-penguin/61969d66cfcdba137d021558.md @@ -11,7 +11,7 @@ Um zu verhindern, dass der Berg das `.ground`-Element verschiebt, musst du seine # --hints-- -Du solltest `.left-mountain` eine `position` von `absolute` geben. Found `--fcc-actual--` instead of `--fcc-expected--`. +Du solltest `.left-mountain` eine `position` von `absolute` geben. Es wurde `--fcc-expected--` statt `--fcc-actual--` gefunden. ```js assert.equal(new __helpers.CSSHelp(document).getStyle('.left-mountain')?.position, 'absolute'); diff --git a/curriculum/challenges/german/14-responsive-web-design-22/learn-css-transforms-by-building-a-penguin/619be73b3c806006ccc00bb0.md b/curriculum/challenges/german/14-responsive-web-design-22/learn-css-transforms-by-building-a-penguin/619be73b3c806006ccc00bb0.md index 041439bb300..2257f4b467f 100644 --- a/curriculum/challenges/german/14-responsive-web-design-22/learn-css-transforms-by-building-a-penguin/619be73b3c806006ccc00bb0.md +++ b/curriculum/challenges/german/14-responsive-web-design-22/learn-css-transforms-by-building-a-penguin/619be73b3c806006ccc00bb0.md @@ -23,7 +23,7 @@ Du solltest `.penguin-body::before` eine `height` von `45%` geben. assert.equal(new __helpers.CSSHelp(document).getStyle('.penguin-body::before')?.height, '45%'); ``` -You should give `.penguin-body::before` a `background-color` of `--fcc-expected--`, but found `--fcc-actual--`. +Du solltest `.penguin-body::before` eine `background-color` von `--fcc-expected--` zuweisen, aber es wurde `--fcc-actual--` gefunden. ```js assert.equal(new __helpers.CSSHelp(document).getStyle('.penguin-body::before')?.backgroundColor, 'gray'); diff --git a/curriculum/challenges/german/14-responsive-web-design-22/learn-css-transforms-by-building-a-penguin/619c155df0063a0a3fec0e32.md b/curriculum/challenges/german/14-responsive-web-design-22/learn-css-transforms-by-building-a-penguin/619c155df0063a0a3fec0e32.md index de68b9928ce..fee9d0fff07 100644 --- a/curriculum/challenges/german/14-responsive-web-design-22/learn-css-transforms-by-building-a-penguin/619c155df0063a0a3fec0e32.md +++ b/curriculum/challenges/german/14-responsive-web-design-22/learn-css-transforms-by-building-a-penguin/619c155df0063a0a3fec0e32.md @@ -23,7 +23,7 @@ Du solltest `.face` eine `width`-Eigenschaft geben. assert.notEmpty(new __helpers.CSSHelp(document).getStyle('.face')?.width); ``` -You should give `.face` a `width` of `--fcc-expected--`, but found `--fcc-actual--`. +Du solltest `.face` eine `width` von `--fcc-expected--` zuweisen, aber es wurde `--fcc-actual--` gefunden. ```js assert.equal(new __helpers.CSSHelp(document).getStyle('.face')?.width, '60%'); @@ -35,7 +35,7 @@ Du solltest `.face` eine `height`-Eigenschaft geben. assert.notEmpty(new __helpers.CSSHelp(document).getStyle('.face')?.height); ``` -You should give `.face` a `height` of `--fcc-expected--`, but found `--fcc-actual--`. +Du solltest `.face` eine `height` von `--fcc-expected--` zuweisen, aber es wurde `--fcc-actual--` gefunden. ```js assert.equal(new __helpers.CSSHelp(document).getStyle('.face')?.height, '70%'); @@ -47,7 +47,7 @@ Du solltest `.face` eine `background-color`-Eigenschaft geben. assert.notEmpty(new __helpers.CSSHelp(document).getStyle('.face')?.backgroundColor); ``` -You should give `.face` a `background-color` of `--fcc-expected--`, but found `--fcc-actual--`. +Du solltest `.face` eine `background-color` von `--fcc-expected--` zuweisen, aber es wurde `--fcc-actual--` gefunden. ```js assert.equal(new __helpers.CSSHelp(document).getStyle('.face')?.backgroundColor, 'white'); diff --git a/curriculum/challenges/german/14-responsive-web-design-22/learn-css-transforms-by-building-a-penguin/619d0fc9825c271253df28d4.md b/curriculum/challenges/german/14-responsive-web-design-22/learn-css-transforms-by-building-a-penguin/619d0fc9825c271253df28d4.md index 999dbc98607..a88f454dc26 100644 --- a/curriculum/challenges/german/14-responsive-web-design-22/learn-css-transforms-by-building-a-penguin/619d0fc9825c271253df28d4.md +++ b/curriculum/challenges/german/14-responsive-web-design-22/learn-css-transforms-by-building-a-penguin/619d0fc9825c271253df28d4.md @@ -23,13 +23,13 @@ Du solltest `.blush` eine `width` von `--fcc-expected--` geben, fandest `--fcc-a assert.equal(new __helpers.CSSHelp(document).getStyle('.blush')?.width, '15%'); ``` -You should give `.blush` a `height` of `--fcc-expected--`, found `--fcc-actual--`. +Du solltest `.blush` eine `height` von `--fcc-expected--` zuweisen, aber es wurde `--fcc-actual--` gefunden. ```js assert.equal(new __helpers.CSSHelp(document).getStyle('.blush')?.height, '10%'); ``` -You should give `.blush` a `background-color` of `--fcc-expected--`, found `--fcc-actual--`. +Du solltest `.blush` eine `background-color` von `--fcc-expected--` zuweisen, aber es wurde `--fcc-actual--` gefunden. ```js assert.equal(new __helpers.CSSHelp(document).getStyle('.blush')?.backgroundColor, 'pink'); diff --git a/curriculum/challenges/german/14-responsive-web-design-22/learn-css-transforms-by-building-a-penguin/619d15797b580c1828b05426.md b/curriculum/challenges/german/14-responsive-web-design-22/learn-css-transforms-by-building-a-penguin/619d15797b580c1828b05426.md index 80204893455..43bcfc5a166 100644 --- a/curriculum/challenges/german/14-responsive-web-design-22/learn-css-transforms-by-building-a-penguin/619d15797b580c1828b05426.md +++ b/curriculum/challenges/german/14-responsive-web-design-22/learn-css-transforms-by-building-a-penguin/619d15797b580c1828b05426.md @@ -17,7 +17,7 @@ Du solltest ein `div`-Element innerhalb `div.shirt` einfügen. Es sind `--fcc-ex assert.equal(document.querySelectorAll('.shirt > div')?.length, 1); ``` -You should give the new `div` a content of `💜`, but found `--fcc-actual--`. +Du solltest dem neuen `div` einen Inhalt von `💜` zuweisen, aber es wurde `--fcc-actual--` gefunden. ```js assert.equal(document.querySelector('.shirt > div')?.textContent, '💜'); diff --git a/curriculum/challenges/german/14-responsive-web-design-22/learn-css-transforms-by-building-a-penguin/619d204bd73ae51e743b8e94.md b/curriculum/challenges/german/14-responsive-web-design-22/learn-css-transforms-by-building-a-penguin/619d204bd73ae51e743b8e94.md index 244845638a1..8cfcf95fdd8 100644 --- a/curriculum/challenges/german/14-responsive-web-design-22/learn-css-transforms-by-building-a-penguin/619d204bd73ae51e743b8e94.md +++ b/curriculum/challenges/german/14-responsive-web-design-22/learn-css-transforms-by-building-a-penguin/619d204bd73ae51e743b8e94.md @@ -11,13 +11,13 @@ Positioniere die `.foot`-Elemente `85%` vom oberen Rand des übergeordneten Elem # --hints-- -You should give `.foot` a `top` of `--fcc-expected--`, but found `--fcc-actual--`. +Du solltest `.foot` ein `top` von `--fcc-expected--` zuweisen, aber es wurde `--fcc-actual--` gefunden. ```js assert.equal(new __helpers.CSSHelp(document).getStyle('.foot')?.top, '85%'); ``` -You should give `.foot` a `border-radius` of `--fcc-expected--`, but found `--fcc-actual--`. +Du solltest `.foot` einen `border-radius` von `--fcc-expected--` zuweisen, aber es wurde `--fcc-actual--` gefunden. ```js assert.equal(new __helpers.CSSHelp(document).getStyle('.foot')?.borderRadius, '50%'); diff --git a/curriculum/challenges/german/14-responsive-web-design-22/learn-css-variables-by-building-a-city-skyline/5d822fd413a79914d39e9902.md b/curriculum/challenges/german/14-responsive-web-design-22/learn-css-variables-by-building-a-city-skyline/5d822fd413a79914d39e9902.md index 65de6295488..78f5eaabc7e 100644 --- a/curriculum/challenges/german/14-responsive-web-design-22/learn-css-variables-by-building-a-city-skyline/5d822fd413a79914d39e9902.md +++ b/curriculum/challenges/german/14-responsive-web-design-22/learn-css-variables-by-building-a-city-skyline/5d822fd413a79914d39e9902.md @@ -7,7 +7,7 @@ dashedName: step-58 # --description-- -Finally, on the `border-bottom` property of `.bb2a`, change the `1vw` to `5vh` and change the `#000` color to your `--building-color2` variable. Na bitte, jetzt sieht es gut aus! At any time throughout this project, you can comment out or remove the `border` property you added to everything at the beginning to see what the buildings will look like when that gets removed at the end. +Schließlich änderst du bei der Eigenschaft `border-bottom` von `.bb2a` die `1vw` in `5vh` und änderst die Farbe `#000` in deine `--building-color2`-Variable. Na bitte, jetzt sieht es gut aus! Du kannst die Eigenschaft `border`, die du zu Beginn des Projekts hinzugefügt hast, jederzeit auskommentieren oder entfernen, um zu sehen, wie die Gebäude aussehen werden, wenn sie am Ende entfernt werden. # --hints-- diff --git a/curriculum/challenges/german/14-responsive-web-design-22/learn-css-variables-by-building-a-city-skyline/5d822fd413a79914d39e9929.md b/curriculum/challenges/german/14-responsive-web-design-22/learn-css-variables-by-building-a-city-skyline/5d822fd413a79914d39e9929.md index 572d9948930..3f2da3dc8bd 100644 --- a/curriculum/challenges/german/14-responsive-web-design-22/learn-css-variables-by-building-a-city-skyline/5d822fd413a79914d39e9929.md +++ b/curriculum/challenges/german/14-responsive-web-design-22/learn-css-variables-by-building-a-city-skyline/5d822fd413a79914d39e9929.md @@ -7,7 +7,7 @@ dashedName: step-96 # --description-- -Only three more buildings to go. Nest two new `div` elements within the `.fb4` element and give them the classes of `fb4a` and `fb4b`, in that order. Remember that you sort of flipped the location of `.fb4` and `.fb5`, so it's the rightmost purple building you are working on now. +Es fehlen nur noch drei weitere Bauelemente. Nest two new `div` elements within the `.fb4` element and give them the classes of `fb4a` and `fb4b`, in that order. Denke daran, dass du quasi den Standort von `.fb4` und `.fb5` gewechselt hast, sodass du gerade an dem violetten Bauelement, ganz rechts, arbeitest. # --hints-- diff --git a/curriculum/challenges/german/14-responsive-web-design-22/learn-css-variables-by-building-a-city-skyline/5d822fd413a79914d39e9930.md b/curriculum/challenges/german/14-responsive-web-design-22/learn-css-variables-by-building-a-city-skyline/5d822fd413a79914d39e9930.md index 004aa3cb406..6e80d99e02a 100644 --- a/curriculum/challenges/german/14-responsive-web-design-22/learn-css-variables-by-building-a-city-skyline/5d822fd413a79914d39e9930.md +++ b/curriculum/challenges/german/14-responsive-web-design-22/learn-css-variables-by-building-a-city-skyline/5d822fd413a79914d39e9930.md @@ -7,7 +7,7 @@ dashedName: step-103 # --description-- -This building is going to have another triangle on top. Give the top section a `border-top` of `5vh solid transparent`, and a `border-left` that is `8vw`, `solid`, and uses your building color variable as the color. +Dieses Gebäude wird ein weiteres Dreieck an der Spitze haben. Give the top section a `border-top` of `5vh solid transparent`, and a `border-left` that is `8vw`, `solid`, and uses your building color variable as the color. # --hints-- diff --git a/curriculum/challenges/german/14-responsive-web-design-22/learn-css-variables-by-building-a-city-skyline/5d822fd413a79914d39e9933.md b/curriculum/challenges/german/14-responsive-web-design-22/learn-css-variables-by-building-a-city-skyline/5d822fd413a79914d39e9933.md index 3058032bbf9..f570898f54a 100644 --- a/curriculum/challenges/german/14-responsive-web-design-22/learn-css-variables-by-building-a-city-skyline/5d822fd413a79914d39e9933.md +++ b/curriculum/challenges/german/14-responsive-web-design-22/learn-css-variables-by-building-a-city-skyline/5d822fd413a79914d39e9933.md @@ -7,7 +7,7 @@ dashedName: step-105 # --description-- -Add another `repeating-linear-gradient` below the one you just added. Give it a `90deg` direction, use your building color from `0%` to `12%` and window color `12%` to `44%`. This will make a bunch of rectangle windows. +Füge ein weiteres `repeating-linear-gradient` unterhalb des gerade hinzugefügten hinzu. Weise ihm eine `90deg`-Richtung zu, verwende deine Baufarbe von `0%` bis `12%` und Fensterfarbe von `12%` bis `44%`. Dies wird eine Reihe von Rechteckfenstern erzeugen. # --hints-- @@ -17,19 +17,19 @@ Du solltest `.fb5` einen zweiten `repeating-linear-gradient` in der `background` assert.match(new __helpers.CSSHelp(document).getStyle(".fb5")?.getPropVal('background', true), /repeating-linear-gradient\(var\(--building-color2\)(0%)?,var\(--building-color2\)5%,transparent5%,transparent10%\),repeating-linear-gradient/); ``` -You should give the second `repeating-linear-gradient` a direction of `90deg`. +Du solltest dem zweiten `repeating-linear-gradient` eine Richtung von `90deg` zuweisen. ```js assert.match(new __helpers.CSSHelp(document).getStyle(".fb5")?.getPropVal('background', true), /repeating-linear-gradient\(var\(--building-color2\)(0%)?,var\(--building-color2\)5%,transparent5%,transparent10%\),repeating-linear-gradient\(90deg/); ``` -You should give the second `repeating-linear-gradient` a first color of `--building-color2` from `0%` to `12%`. +Du solltest dem zweiten `repeating-linear-gradient` eine erste Farbe von `--building-color2` von `0%` bis `12%` zuweisen. ```js assert.match(new __helpers.CSSHelp(document).getStyle(".fb5")?.getPropVal('background', true), /repeating-linear-gradient\(var\(--building-color2\)(0%)?,var\(--building-color2\)5%,transparent5%,transparent10%\),repeating-linear-gradient\(90deg,var\(--building-color2\)(0%)?,var\(--building-color2\)12%/); ``` -You should give the second `repeating-linear-gradient` a second color of `--window-color2` from `12%` to `44%`. +Du solltest dem zweiten `repeating-linear-gradient` eine zweite Farbe von `--window-color2` von `12%` bis `44%` zuweisen. ```js assert.match(new __helpers.CSSHelp(document).getStyle(".fb5")?.getPropVal('background', true), /repeating-linear-gradient\(var\(--building-color2\)(0%)?,var\(--building-color2\)5%,transparent5%,transparent10%\),repeating-linear-gradient\(90deg,var\(--building-color2\)(0%)?,var\(--building-color2\)12%,var\(--window-color2\)12%,var\(--window-color2\)44%\)/); diff --git a/curriculum/challenges/german/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfa22d1b521be39a3de7be0.md b/curriculum/challenges/german/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfa22d1b521be39a3de7be0.md index c1263da9ae0..a647592e4ac 100644 --- a/curriculum/challenges/german/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfa22d1b521be39a3de7be0.md +++ b/curriculum/challenges/german/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfa22d1b521be39a3de7be0.md @@ -13,7 +13,7 @@ Du kannst jeden beliebigen Text in einen Link verwandeln, zum Beispiel den Text
I think freeCodeCamp is great.
``` -In the text of your `p` element, turn the words `cat photos` into a link by adding opening and closing anchor (`a`) tags around these words. Setze dann das `href`-Attribut auf `https://freecatphotoapp.com` +Verwandle im Text deines `p`-Elements die Wörter `cat photos` in einen Link, indem du öffnende und abschließende (`a`)-Ankertags um diese Wörter herum hinzufügst. Setze dann das `href`-Attribut auf `https://freecatphotoapp.com` # --hints-- diff --git a/curriculum/challenges/german/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5ef9b03c81a63668521804d0.md b/curriculum/challenges/german/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5ef9b03c81a63668521804d0.md index 5bcefc619cb..7eea07a025a 100644 --- a/curriculum/challenges/german/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5ef9b03c81a63668521804d0.md +++ b/curriculum/challenges/german/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5ef9b03c81a63668521804d0.md @@ -29,7 +29,7 @@ Du hast entweder das `figcaption` Element gelöscht oder es fehlt ein öffnendes assert(document.querySelector('figcaption') && code.match(/<\/figcaption\>/)); ``` -Your emphasis `em` element should surround the text `love`. Du hast entweder den Text weggelassen oder einen Tippfehler gemacht. +Dein `em`-Betonungselement sollte den Text `love` umgeben. Du hast entweder den Text weggelassen oder einen Tippfehler gemacht. ```js assert( diff --git a/curriculum/challenges/german/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5ef9b03c81a63668521804d3.md b/curriculum/challenges/german/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5ef9b03c81a63668521804d3.md index 07be8beb420..2c3e6ce0d0b 100644 --- a/curriculum/challenges/german/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5ef9b03c81a63668521804d3.md +++ b/curriculum/challenges/german/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5ef9b03c81a63668521804d3.md @@ -23,7 +23,7 @@ Dein `figure` sollte ein schließendes Tag haben. Schließende Tags haben ein `/ assert(code.match(/<\/figure>/g).length === 2); ``` -There should be a `figure` element right above the second `section` element's closing tag. +Genau über dem abschließenden Tag des zweiten `section`-Elements sollte ein `figure`-Element stehen. ```js assert($('main > section')[1].lastElementChild.nodeName === 'FIGURE'); diff --git a/curriculum/challenges/german/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5ef9b03c81a63668521804d6.md b/curriculum/challenges/german/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5ef9b03c81a63668521804d6.md index 7d44039902d..6106ae160cc 100644 --- a/curriculum/challenges/german/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5ef9b03c81a63668521804d6.md +++ b/curriculum/challenges/german/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5ef9b03c81a63668521804d6.md @@ -13,7 +13,7 @@ Füge nach der `Cat Form`-Überschrift ein `form`-Element hinzu. # --hints-- -Your `form` element should have an opening tag and closing tag. Es kann sein, dass eine oder beide der erforderlichen Tags fehlen oder in der falschen Reihenfolge liegen. +Dein `form`-Element sollte ein öffnendes und ein abschließendes Tag enthalten. Es kann sein, dass eine oder beide der erforderlichen Tags fehlen oder in der falschen Reihenfolge liegen. ```js assert(document.querySelector('form') && code.match(/<\/form>/g)); @@ -26,7 +26,7 @@ const noSpaces = code.replace(/\s/g, ''); assert(noSpaces.indexOf('')); ``` -Das `form`-Element, das im letzten `section`-Element eingebettet ist, sollte unter dem `h2`-Element stehen. You have the `h2` element and the `form` element in the wrong order. +Das `form`-Element, das im letzten `section`-Element eingebettet ist, sollte unter dem `h2`-Element stehen. Das `h2`-Element und das `form`-Element stehen in der falschen Reihenfolge. ```js assert(document.querySelector('form').previousElementSibling.nodeName === 'H2'); diff --git a/curriculum/challenges/german/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5ef9b03c81a63668521804db.md b/curriculum/challenges/german/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5ef9b03c81a63668521804db.md index 9ea388c614a..a56d2177118 100644 --- a/curriculum/challenges/german/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5ef9b03c81a63668521804db.md +++ b/curriculum/challenges/german/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5ef9b03c81a63668521804db.md @@ -17,7 +17,7 @@ Du hast entweder dein `input`-Element gelöscht oder es hat eine ungültige Synt assert($('input').length); ``` -Deine `form` sollte nur das `input`-Element enthalten. Remove any additional HTML elements or text within the `form` element. +Deine `form` sollte nur das `input`-Element enthalten. Entferne innerhalb des `form`-Elements alle zusätzlichen HTML-Elemente oder Text. ```js assert( diff --git a/curriculum/challenges/german/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5ef9b03c81a63668521804dd.md b/curriculum/challenges/german/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5ef9b03c81a63668521804dd.md index ae6390eaf81..1825a5d16b7 100644 --- a/curriculum/challenges/german/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5ef9b03c81a63668521804dd.md +++ b/curriculum/challenges/german/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5ef9b03c81a63668521804dd.md @@ -7,7 +7,7 @@ dashedName: step-45 # --description-- -`label`-Elemente werden verwendet, um den Text für ein `input`-Element mit dem `input`-Element selbst zu verknüpfen (speziell für unterstützende Technologien wie Screenreader). For example, `` makes it so clicking the word `cat` also selects the corresponding radio button. +`label`-Elemente werden verwendet, um den Text für ein `input`-Element mit dem `input`-Element selbst zu verknüpfen (speziell für unterstützende Technologien wie Screenreader). Zum Beispiel sorgt `` dafür, dass beim Anklicken von `cat` auch der entsprechende Radio-Button ausgewählt wird. Bette deinen `radio`-Button in einem `label`-Element ein. diff --git a/curriculum/challenges/german/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5ef9b03c81a63668521804e8.md b/curriculum/challenges/german/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5ef9b03c81a63668521804e8.md index 0a2672d6155..24c105adc7e 100644 --- a/curriculum/challenges/german/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5ef9b03c81a63668521804e8.md +++ b/curriculum/challenges/german/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5ef9b03c81a63668521804e8.md @@ -11,7 +11,7 @@ Bette ein `p`-Element mit dem Text `No Copyright - freeCodeCamp.org` innerhalb d # --hints-- -You have either deleted the `footer` element or it is missing an opening tag or closing tag. +Du hast entweder das `footer`-Element gelöscht oder es fehlt ein öffnendes oder abschließendes Tag. ```js assert(document.querySelector('footer') && code.match(/<\/footer>/)); diff --git a/curriculum/challenges/german/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5efc4f528d6a74d05e68af74.md b/curriculum/challenges/german/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5efc4f528d6a74d05e68af74.md index eb56870c1dc..83cb08a169e 100644 --- a/curriculum/challenges/german/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5efc4f528d6a74d05e68af74.md +++ b/curriculum/challenges/german/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5efc4f528d6a74d05e68af74.md @@ -19,7 +19,7 @@ Du solltest sicher stellen, dass das Kontrollkästchen noch vorhanden ist. assert($('input[type="checkbox"]')[0]); ``` -Dein Kontrollkästchen sollte noch immer ein `id`-Attribut mit dem Wert `loving` haben. Expected `--fcc-expected--`, but found `--fcc-actual--`. +Dein Kontrollkästchen sollte noch immer ein `id`-Attribut mit dem Wert `loving` haben. Es ist `--fcc-expected--` erwartet worden, aber es wurde `--fcc-actual--` gefunden. ```js assert.equal($('input[type="checkbox"]')[0].id, 'loving'); @@ -57,7 +57,7 @@ const labelElem = $('input[type="checkbox"]')[0].nextElementSibling; assert(labelElem.hasAttribute('for')); ``` -Dein neues `label`-Element sollte ein `for`-Attribut mit dem Wert `loving` haben. Expected `--fcc-expected--`, but found `--fcc-actual--`. +Dein neues `label`-Element sollte ein `for`-Attribut mit dem Wert `loving` haben. Es ist `--fcc-expected--` erwartet worden, aber es wurde `--fcc-actual--` gefunden. ```js const labelElem = $('input[type="checkbox"]')[0].nextElementSibling; diff --git a/curriculum/challenges/german/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5efc54138d6a74d05e68af76.md b/curriculum/challenges/german/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5efc54138d6a74d05e68af76.md index 0ce453b22bb..2dd2b1b0be0 100644 --- a/curriculum/challenges/german/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5efc54138d6a74d05e68af76.md +++ b/curriculum/challenges/german/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5efc54138d6a74d05e68af76.md @@ -11,13 +11,13 @@ Füge ein `id`-Attribut mit dem Wert `loving` zur Checkbox-Eingabe hinzu. # --hints-- -Deine Checkbox sollte ein `id`-Attribut haben. Check that there is a space after the opening tag's name and/or there are spaces before all attribute names. +Deine Checkbox sollte ein `id`-Attribut haben. Überprüfe, ob ein Leerzeichen nach dem Namen des öffnenden Tags und/oder Leerzeichen vor allen Attributnamen vorhanden sind. ```js assert($('input[type="checkbox"]')[0].hasAttribute('id')); ``` -Deine Checkbox sollte ein `id`-Attribut mit dem Wert `loving` haben. You have either omitted the value or have a typo. Remember that attribute values should be surrounded with quotation marks. +Deine Checkbox sollte ein `id`-Attribut mit dem Wert `loving` haben. Du hast entweder den Wert weggelasssen oder einen Tippfehler gemacht. Denke daran, dass Attributwerte zwischen Anführungszeichen stehen sollten. ```js assert($('input[type="checkbox"]')[0].id.match(/^loving$/)); diff --git a/curriculum/challenges/german/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5f07be6ef7412fbad0c5626b.md b/curriculum/challenges/german/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5f07be6ef7412fbad0c5626b.md index 3031d66eaff..8b63917cc51 100644 --- a/curriculum/challenges/german/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5f07be6ef7412fbad0c5626b.md +++ b/curriculum/challenges/german/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5f07be6ef7412fbad0c5626b.md @@ -31,7 +31,7 @@ Das ganze `section`-Element sollte sich zwischen dem öffnenden und abschließen assert(document.querySelector('section').parentNode.nodeName === 'MAIN'); ``` -The existing `h2`, comment, `p` element, and anchor (`a`) element should be between the opening and closing tags of the `section` element. +Die vorhandenen `h2`-, Kommentar-, `p`- und Anker-(`a`)-Elemente sollten sich zwischen dem öffnenden und abschließenden Tag des `section`-Elements befinden. ```js const childrenOfSection = [...document.querySelector('section').childNodes]; diff --git a/curriculum/challenges/german/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5f07c98cdb9413cbd4b16750.md b/curriculum/challenges/german/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5f07c98cdb9413cbd4b16750.md index f9688368be4..b1e9578dac5 100644 --- a/curriculum/challenges/german/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5f07c98cdb9413cbd4b16750.md +++ b/curriculum/challenges/german/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5f07c98cdb9413cbd4b16750.md @@ -7,17 +7,17 @@ dashedName: step-17 # --description-- -It is time to add a new section. Füge ein zweites `section`-Element unter dem vorhandenen `section`-Element hinzu. +Es ist an der Zeit, einen neuen Abschnitt hinzuzufügen. Füge ein zweites `section`-Element unter dem vorhandenen `section`-Element hinzu. # --hints-- -Dein `section`-Element sollte ein öffnendes Tag haben. Opening tags have this syntax: `
+
-Let $T(n)$ be the number of necklace triplets $(a, b, c)$ such that $a$, $b$ and $c$ are positive integers, and $b ≤ n$. Наприклад, $T(1) = 9$, $T(20) = 732$ та $T(3\\,000) = 438\\,106$.
+Нехай $T(n)$ буде кількістю триплетів намиста $(a, b, c)$, за яких $a$, $b$ та $c$ є натуральними числами і $b ≤ n$. Наприклад, $T(1) = 9$, $T(20) = 732$ та $T(3\\,000) = 438\\,106$.
Знайдіть $T(1\\,000\\,000\\,000)$.
diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md
index 7496fadd58e..008b18a0ea6 100644
--- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md
+++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md
@@ -14,6 +14,10 @@ dashedName: add-looping-logic-to-your-code-using-the-do-while-and-while-statemen
# --question--
+## --assignment--
+
+Виконайте модуль «Додайте логіку циклу до свого коду, використовуючи інструкції do-while та while в C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче.
+
## --text--
Розробнику потрібно перебрати масив, щоб знайти елемент, який відповідає певному критерію. Яка інструкція підходить найкраще?
diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md
index 856298110d4..f7913acc3f6 100644
--- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md
+++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md
@@ -14,6 +14,10 @@ dashedName: branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp
# --question--
+## --assignment--
+
+Виконайте модуль «Розгалужте потік коду, використовуючи конструкцію switch-case в C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче.
+
## --text--
Яка мета ключового слова `break`?
diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md
index 5bef0339f59..f77a9e70673 100644
--- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md
+++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md
@@ -14,6 +14,10 @@ dashedName: challenge-project-develop-branching-and-looping-structures-in-c-shar
# --question--
+## --assignment--
+
+Виконайте проєкт завдання «Розробіть гілкові та циклові структури в C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче.
+
## --text--
Розробнику потрібно створити інструкцію ітерації. У якому випадку краще використати інструкцію `while`, а не `do`?
diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md
index d5341b079bb..327260ca3af 100644
--- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md
+++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md
@@ -14,21 +14,25 @@ dashedName: control-variable-scope-and-logic-using-code-blocks-in-c-sharp
# --question--
+## --assignment--
+
+Виконайте модуль «Керуйте областю та логікою змінної, використовуючи блоки коду в C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче.
+
## --text--
-На що впливає інструкція `using`?
+Яке з перелічених тверджень правильне щодо показу/видалення фігурних дужок в блоках коду, пов’язаних інструкцією `if`?
## --answers--
-Впливає лише на перший блок коду в файлі коду.
+Фігурні дужки не можна видалити з блоків коду інструкцій `else if` та `else`.
---
-Впливає лише на поточний блок коду в файлі коду.
+Якщо видалити фігурні дужки з блоків коду `if-elseif-else`, також потрібно видалити пробіл.
---
-Впливає на весь код у файлі коду.
+Завжди потрібно вибирати стиль, який покращує читабельність.
## --video-solution--
diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md
index f57bef680fc..7bc399c1683 100644
--- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md
+++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md
@@ -14,6 +14,10 @@ dashedName: evaluate-boolean-expressions-to-make-decisions-in-c-sharp
# --question--
+## --assignment--
+
+Виконайте модуль «Оцініть булеві вирази, щоб прийняти рішення в C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче.
+
## --text--
Для чого можна використати умовний оператор?
diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md
index e7f2063e9ee..4e48c6d4c07 100644
--- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md
+++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md
@@ -14,6 +14,10 @@ dashedName: guided-project-develop-conditional-branching-and-looping-structures-
# --question--
+## --assignment--
+
+Виконайте керований проєкт «Розробіть умовні гілкові та циклові структури в C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче.
+
## --text--
У якому випадку краще використати конструкцію `switch-case`, а не `if-elseif-else`?
diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md
index 042456f8b0f..f88742229f6 100644
--- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md
+++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md
@@ -14,6 +14,10 @@ dashedName: iterate-through-a-code-block-using-the-for-statement-in-c-sharp
# --question--
+## --assignment--
+
+Виконайте модуль «Переберіть код блоку, використовуючи інструкцію for в C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче.
+
## --text--
Яка з перелічених інструкцій `for` правильна?
diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md
index d43a8f3c87e..246c7f30a7c 100644
--- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md
+++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md
@@ -14,6 +14,10 @@ dashedName: add-decision-logic-to-your-code-using-if-else-and-else-if-statements
# --question--
+## --assignment--
+
+Виконайте модуль «Додайте логіку рішень до коду, використовуючи інструкції if, else та else if в C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче.
+
## --text--
Що з переліченого не є дійсним оператором в C#?
diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md
index 57bb7160a80..d4473e0e7a9 100644
--- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md
+++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md
@@ -14,6 +14,10 @@ dashedName: call-methods-from-the-dot-net-class-library-using-c-sharp
# --question--
+## --assignment--
+
+Виконайте модуль «Викличте методи з бібліотеки класів .NET, використовуючи C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче.
+
## --text--
Що таке об’єкт?
diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md
index ae218635c3d..8ed9be440a7 100644
--- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md
+++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md
@@ -14,6 +14,10 @@ dashedName: challenge-project-develop-foreach-and-if-elseif-else-structures-to-p
# --question--
+## --assignment--
+
+Виконайте проєкт завдання «Розробіть структури foreach та if-elseif-else, щоб обробити дані масиву в C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче.
+
## --text--
Розробник працює з двома іншими розробниками над оновленням застосунків. Вони використовуватимуть коментарі під час процесу оновлення. У якому випадку доречно використовувати коментарі в коді?
diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md
index 43f7d068bcd..a5e7557c238 100644
--- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md
+++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md
@@ -14,6 +14,10 @@ dashedName: create-readable-code-with-conventions-whitespace-and-comments-in-c-s
# --question--
+## --assignment--
+
+Виконайте модуль «Створіть читабельний код з конвенціями, пробілами та коментарями в C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче.
+
## --text--
З якою метою краще не використовувати коментар в коді?
diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md
index 6577dfedc68..68aae96594f 100644
--- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md
+++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md
@@ -14,6 +14,10 @@ dashedName: guided-project-develop-foreach-and-if-elseif-else-structures-to-proc
# --question--
+## --assignment--
+
+Виконайте керований проєкт «Розробіть структури foreach та if-elseif-else, щоб обробити дані масиву в C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче.
+
## --text--
Розробник пише застосунок, який використовує цикл `foreach`, щоб перебрати масив з 20 елементами. Як тільки застосунок готовий, розробник дізнається, що масив повинен містити 40 елементів. Застосунок має розглядати 40 елементів масиву. Яке оновлення коду потрібно виконати?
diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md
index cb64b052a96..c409344bca9 100644
--- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md
+++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md
@@ -14,6 +14,10 @@ dashedName: install-and-configure-visual-studio-code
# --question--
+## --assignment--
+
+Виконайте модуль «Встановіть та налаштуйте Visual Studio Code» на Microsoft Learn. Потім дайте відповідь на запитання нижче.
+
## --text--
Що з переліченого найкраще описує інтегроване середовище розробки (IDE)?
diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md
index 69685ce132d..7ccc862dbf6 100644
--- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md
+++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md
@@ -14,6 +14,10 @@ dashedName: store-and-iterate-through-sequences-of-data-using-arrays-and-the-for
# --question--
+## --assignment--
+
+Виконайте модуль «Збережіть та переберіть послідовність даних, використовуючи масиви та інструкцію foreach в C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче.
+
## --text--
Яка з перелічених інструкцій foreach синтаксично правильна?
diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md
index 7839fcd80df..0a504ea3567 100644
--- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md
+++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md
@@ -14,6 +14,10 @@ dashedName: challenge-project-create-a-mini-game
# --question--
+## --assignment--
+
+Виконайте проєкт завдання «Створіть міні гру» на Microsoft Learn. Потім дайте відповідь на запитання нижче.
+
## --text--
Розробник хоче створити метод, який повертає значення в масиві. Що з переліченого буде хорошим вибором для сигнатури методу?
diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md
index ce7cdc270dc..ff8aa0fdfd9 100644
--- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md
+++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md
@@ -14,6 +14,10 @@ dashedName: create-c-sharp-methods-that-return-values
# --question--
+## --assignment--
+
+Виконайте модуль «Створіть методи C#, які повертають значення» на Microsoft Learn. Потім дайте відповідь на запитання нижче.
+
## --text--
Що з переліченого правильно повертає значення рядка?
diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md
index b586b1555fa..3cf21eefa6b 100644
--- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md
+++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md
@@ -14,6 +14,10 @@ dashedName: create-c-sharp-methods-with-parameters
# --question--
+## --assignment--
+
+Виконайте метод «Створіть методи C# з параметрами» на Microsoft Learn. Потім дайте відповідь на запитання нижче.
+
## --text--
Вам надано сигнатуру методу:
diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md
index 040cf0cb7fd..7b488cf1ce9 100644
--- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md
+++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md
@@ -14,6 +14,10 @@ dashedName: guided-project-plan-a-petting-zoo-visit
# --question--
+## --assignment--
+
+Виконайте керований проєкт «Сплануйте візит до контактного зоопарку» на Microsoft Learn. Потім дайте відповідь на запитання нижче.
+
## --text--
Навіщо потрібно визначати додатковий параметр в методі?
diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md
index aaade35521d..83d59b30a5e 100644
--- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md
+++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md
@@ -14,6 +14,10 @@ dashedName: write-your-first-c-sharp-method
# --question--
+## --assignment--
+
+Виконайте модуль «Напишіть свій перший метод C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче.
+
## --text--
Що з переліченого правильно оголошує метод?
diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md
index ce82fa25e8d..45a83cd66b3 100644
--- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md
+++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md
@@ -14,6 +14,10 @@ dashedName: challenge-project-debug-a-c-sharp-console-application-using-visual-s
# --question--
+## --assignment--
+
+Виконайте проєкт завдання «Налагодьте консольний застосунок C#, використовуючи Visual Studio Code» на Microsoft Learn. Потім дайте відповідь на запитання нижче.
+
## --text--
Що з переліченого можна використати, щоб встановити точку зупинки в Visual Studio Code?
diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md
index 29b002c6dfb..25ec5803689 100644
--- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md
+++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md
@@ -14,6 +14,10 @@ dashedName: create-and-throw-exceptions-in-c-sharp-console-applications
# --question--
+## --assignment--
+
+Виконайте модуль «Створіть та викиньте винятки в консольних застосунках C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче.
+
## --text--
Коли метод повинен кинути виняток?
diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md
index 9171251a5d5..45d286a85d2 100644
--- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md
+++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md
@@ -14,6 +14,10 @@ dashedName: guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-appl
# --question--
+## --assignment--
+
+Виконайте керований проєкт «Налагодьте та обробіть винятки в консольному застосунку C#, використовуючи Visual Studio Code» на Microsoft Learn. Потім дайте відповідь на запитання нижче.
+
## --text--
Коли викидається виняток `ArgumentOutOfRangeException`?
diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md
index 8f18bf037d6..7373a57529d 100644
--- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md
+++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md
@@ -14,6 +14,10 @@ dashedName: implement-exception-handling-in-c-sharp-console-applications
# --question--
+## --assignment--
+
+Виконайте модуль «Імплементуйте оброблення винятків в консольних застосунках C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче.
+
## --text--
Коли викидається виняток `ArrayTypeMismatchException`?
diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md
index d84ff2217c4..f21979b996b 100644
--- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md
+++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md
@@ -14,6 +14,10 @@ dashedName: implement-the-visual-studio-code-debugging-tools-for-c-sharp
# --question--
+## --assignment--
+
+Виконайте модуль «Імплементуйте інструменти налагодження Visual Studio Code до C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче.
+
## --text--
Який з розділів RUN AND DEBUG використовують, щоб відслідкувати поточну точку виконання в запущеному застосунку?
diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md
index b8e0951340d..eac312fc04e 100644
--- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md
+++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md
@@ -14,6 +14,10 @@ dashedName: review-the-principles-of-code-debugging-and-exception-handling
# --question--
+## --assignment--
+
+Виконайте модуль «Перегляньте принципи налагодження коду та оброблення винятків» на Microsoft Learn. Потім дайте відповідь на запитання нижче.
+
## --text--
Який зв’язок між типом винятку та інформацією, яку він містить?
diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md
index 3c3eda2715e..9cbbcda4d53 100644
--- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md
+++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md
@@ -14,6 +14,10 @@ dashedName: challenge-project-work-with-variable-data-in-c-sharp
# --question--
+## --assignment--
+
+Виконайте проєкт завдання «Попрацюйте з даними змінних в C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче.
+
## --text--
Чому перед сортуванням масиву рядків важливо використовувати метод `String.Trim()` до кожного елемента масиву?
diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md
index e60bfea61cc..fcdc5e77a3f 100644
--- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md
+++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md
@@ -14,6 +14,10 @@ dashedName: choose-the-correct-data-type-in-your-c-sharp-code
# --question--
+## --assignment--
+
+Виконайте модуль «Виберіть правильний тип даних в коді C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче.
+
## --text--
Фрагмент коду має зберігати цілі числові значення від `-1,000,000` до `1,000,000`. Який тип даних оберете?
diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md
index 804dd6e7a75..5816cc233e1 100644
--- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md
+++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md
@@ -14,6 +14,10 @@ dashedName: convert-data-types-using-casting-and-conversion-techniques-in-c-shar
# --question--
+## --assignment--
+
+Виконайте модуль «Конвертуйте типи даних, використовуючи приведення та перетворення в C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче.
+
## --text--
Яка дія виконується при зміні `float` на `int`?
diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md
index 9fea28901f2..3fbe1fdad94 100644
--- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md
+++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md
@@ -14,6 +14,10 @@ dashedName: format-alphanumeric-data-for-presentation-in-c-sharp
# --question--
+## --assignment--
+
+Виконайте модуль «Відформатуйте буквено-цифрові дані для представлення в C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче.
+
## --text--
Який очікуваний вивід коду `Console.WriteLine("C110".PadLeft(6, '0'));`?
diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md
index ba86dd330c0..b8bdeea5d46 100644
--- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md
+++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md
@@ -14,6 +14,10 @@ dashedName: guided-project-work-with-variable-data-in-c-sharp
# --question--
+## --assignment--
+
+Виконайте керований проєкт «Попрацюйте з даними змінних в C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче.
+
## --text--
Дано код `decimal.TryParse(numberString, out myConvert))`, де типом `numberString` є рядок.
diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md
index af15c18afa1..043d6461df0 100644
--- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md
+++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md
@@ -14,6 +14,10 @@ dashedName: modify-the-content-of-string-using-built-in-string-data-type-methods
# --question--
+## --assignment--
+
+Виконайте модуль «Змініть вміст рядків, використовуючи вбудовані методи даних рядків в C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче.
+
## --text--
Який метод знаходить наступний індекс символа `-`, `=` або `_`?
diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md
index affe9ce7809..6a4db4d3903 100644
--- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md
+++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md
@@ -14,6 +14,10 @@ dashedName: perform-operations-on-arrays-using-helpers-methods-in-c-sharp
# --question--
+## --assignment--
+
+Виконайте модуль «Виконайте операції на масивах, використовуючи допоміжні методи в C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче.
+
## --text--
Який метод змінює порядок елементів у масиві рядків?
diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md
index a964a449b3b..406e846408a 100644
--- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md
+++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md
@@ -14,6 +14,10 @@ dashedName: guided-project-calculate-and-print-student-grades
# --question--
+## --assignment--
+
+Виконайте керований проєкт «Розрахунок та друк оцінок студента» на Microsoft Learn. Потім дайте відповідь на запитання нижче.
+
## --text--
Що не так з наданим кодом?
diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md
index 0c1f792aa98..9ddaf83590a 100644
--- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md
+++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md
@@ -14,6 +14,10 @@ dashedName: guided-project-calculate-final-gpa
# --question--
+## --assignment--
+
+Виконайте керований проєкт «Розрахунок GPA» на Microsoft Learn. Потім дайте відповідь на запитання нижче.
+
## --text--
Припустимо, що `decimal gradePointAverage = 3.99872831m;`.
diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md
index 41df248f6fd..f6ef3d15f02 100644
--- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md
+++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md
@@ -14,6 +14,10 @@ dashedName: perform-basic-operations-on-numbers-in-c-sharp
# --question--
+## --assignment--
+
+Виконайте модуль «Виконайте базові операції з числами в C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче.
+
## --text--
Яке значення матиме результат?
diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md
index 8a1a05cdc42..2ad4008fef6 100644
--- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md
+++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md
@@ -14,6 +14,10 @@ dashedName: perform-basic-string-formatting-in-c-sharp
# --question--
+## --assignment--
+
+Виконайте модуль «Виконайте базове форматування рядків в C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче.
+
## --text--
Який з перелічених рядків правильно використовує інтерполяцію рядка, припускаючи, що значення змінної є рядком?
diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md
index c3b901e0aa5..52d945fd08c 100644
--- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md
+++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md
@@ -14,6 +14,10 @@ dashedName: store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp
# --question--
+## --assignment--
+
+Виконайте модуль «Збережіть та отримайте дані, використовуючи значення літералів та змінних в C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче.
+
## --text--
Який з перелічених рядків правильно створює змінну?
diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md
index 53b6766d1c0..e2fa746d744 100644
--- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md
+++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md
@@ -14,6 +14,10 @@ dashedName: write-your-first-c-sharp-code
# --question--
+## --assignment--
+
+Виконайте модуль «Напишіть свій перший код C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче.
+
## --text--
Яка різниця між `Console.Write` та `Console.WriteLine`?