diff --git a/curriculum/challenges/arabic/02-javascript-algorithms-and-data-structures/basic-javascript/manipulate-arrays-with-push.md b/curriculum/challenges/arabic/02-javascript-algorithms-and-data-structures/basic-javascript/manipulate-arrays-with-push.md index 7ff03fec4cb..24e772e3f91 100644 --- a/curriculum/challenges/arabic/02-javascript-algorithms-and-data-structures/basic-javascript/manipulate-arrays-with-push.md +++ b/curriculum/challenges/arabic/02-javascript-algorithms-and-data-structures/basic-javascript/manipulate-arrays-with-push.md @@ -9,21 +9,21 @@ dashedName: manipulate-arrays-with-push # --description-- -يوجد طريقة سهلة لإضافة البيانات إلى نهاية القائمة و هي عن طريق وظيفة `push()`. +An easy way to append data to the end of an array is via the `push()` method. -تأخذ `.push()` واحد أو أكثر من الوسائط و "تدفعها" إلى نهاية القائمة. +The `push()` method takes one or more arguments and appends them to the end of the array, in the order in which they appear. It returns the new length of the array. على سبيل المثال: ```js const arr1 = [1, 2, 3]; -arr1.push(4); +arr1.push(4, 5); const arr2 = ["Stimpson", "J", "cat"]; arr2.push(["happy", "joy"]); ``` -ألأن `arr1` لديه قيمة `[1, 2, 3, 4]` ولدي `arr2` قيمة `["Stimpson", "J", "cat", ["happy", "joy"]]`. +`arr1` now has the value `[1, 2, 3, 4, 5]` and `arr2` has the value `["Stimpson", "J", "cat", ["happy", "joy"]]`. # --instructions-- diff --git a/curriculum/challenges/arabic/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfa22d1b521be39a3de7be0.md b/curriculum/challenges/arabic/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfa22d1b521be39a3de7be0.md index 8cd17cab9a9..db98f1cad53 100644 --- a/curriculum/challenges/arabic/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfa22d1b521be39a3de7be0.md +++ b/curriculum/challenges/arabic/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfa22d1b521be39a3de7be0.md @@ -7,9 +7,13 @@ dashedName: step-12 # --description-- -في الخطوة السابقة حولت الكلمات `link to cat pictures` إلى رابط عن طريق وضعها بين علامات أفتاح (opening tag) و إغلاق (closing tag) الرابط (`a`). يمكنك فعل الشيء نفسه للكلمات داخل عنصر، مثل عنصر `p`. +You can turn any text into a link, such as the text inside of a `p` element. -في نص عنصرك `p`، تحويل الكلمات `cat photos` إلى رابط إلى `https://freecatphotoapp.com` عن طريق إضافة الكلمات داخل علامات الأفتاح والإغلاق الرابط (`a`) بين تلك الكلمات. +``` html +
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. Then set the `href` attribute to `https://freecatphotoapp.com/` # --hints-- diff --git a/curriculum/challenges/arabic/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/6476f5c17f99146071ee884c.md b/curriculum/challenges/arabic/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/6476f5c17f99146071ee884c.md index 03ea4e8598b..71b68d01fe8 100644 --- a/curriculum/challenges/arabic/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/6476f5c17f99146071ee884c.md +++ b/curriculum/challenges/arabic/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/6476f5c17f99146071ee884c.md @@ -11,7 +11,7 @@ You could see that nothing happens. The `.cat-head` element did not move despite When you use the `relative` value, the element is still positioned according to the normal flow of the document, but the `top`, `left`, `bottom`, and `right` values become active. -Instead of `static`, give you `.cat-head` a position of `relative`, and leave both `top` and `left` properties as they are. +Instead of `static`, give your `.cat-head` a position of `relative`, and leave both `top` and `left` properties as they are. # --hints-- 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 f3da4b4fb3f..7c50ac42745 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 @@ -7,9 +7,9 @@ dashedName: add-looping-logic-to-your-code-using-the-do-while-and-while-statemen # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-do-while/ and complete all the tasks for the "Add Looping Logic to Your Code Using the do-while and while Statements in C#" module. This is required to earn the "Add Logic to C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-do-while/ and complete all the tasks for the "Add Looping Logic to Your Code Using the do-while and while Statements in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 f63f55493b2..f6641f0316f 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 @@ -7,9 +7,9 @@ dashedName: branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-switch-case/ and complete all the tasks for the "Branch the Flow of Code Using the switch-case Construct in C#" module. This is required to earn the "Add Logic to C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-switch-case/ and complete all the tasks for the "Branch the Flow of Code Using the switch-case Construct in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 9e0f17ab674..265d870150e 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 @@ -7,9 +7,9 @@ dashedName: challenge-project-develop-branching-and-looping-structures-in-c-shar # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/challenge-project-develop-branching-looping-structures-c-sharp/ and complete all the tasks for the "Challenge Project - Develop Branching and Looping Structures in C#" module. This is required to earn the "Add Logic to C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/challenge-project-develop-branching-looping-structures-c-sharp/ and complete all the tasks for the "Challenge Project - Develop Branching and Looping Structures in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 ea77a8f1bfc..daa95972023 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 @@ -7,9 +7,9 @@ dashedName: control-variable-scope-and-logic-using-code-blocks-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-code-blocks/ and complete all the tasks for the "Control Variable Scope and Logic Using Code Blocks in C#" module. This is required to earn the "Add Logic to C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-code-blocks/ and complete all the tasks for the "Control Variable Scope and Logic Using Code Blocks in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 81d114a0d00..1f1c72e0c8a 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 @@ -7,9 +7,9 @@ dashedName: evaluate-boolean-expressions-to-make-decisions-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-evaluate-boolean-expressions/ and complete all the tasks for the "Evaluate Boolean Expressions to Make Decisions in C#" module. This is required to earn the "Add Logic to C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-evaluate-boolean-expressions/ and complete all the tasks for the "Evaluate Boolean Expressions to Make Decisions in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 868a9ba5696..7cfc12d242d 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 @@ -7,9 +7,9 @@ dashedName: guided-project-develop-conditional-branching-and-looping-structures- # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/guided-project-develop-conditional-branching-looping/ and complete all the tasks for the "Guided Project - Develop Conditional Branching and Looping Structures in C#" module. This is required to earn the "Add Logic to C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/guided-project-develop-conditional-branching-looping/ and complete all the tasks for the "Guided Project - Develop Conditional Branching and Looping Structures in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 ecbc1c26392..fbc5beccffd 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 @@ -7,9 +7,9 @@ dashedName: iterate-through-a-code-block-using-the-for-statement-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-for/ and complete all the tasks for the "Iterate Through a Code Block Using the for Statement in C#" module. This is required to earn the "Add Logic to C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-for/ and complete all the tasks for the "Iterate Through a Code Block Using the for Statement in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/trophy-add-logic-to-c-sharp-console-applications.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/trophy-add-logic-to-c-sharp-console-applications.md index 92b3c911a26..31e5799bf8a 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/trophy-add-logic-to-c-sharp-console-applications.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/trophy-add-logic-to-c-sharp-console-applications.md @@ -8,6 +8,6 @@ msTrophyId: learn.wwl.get-started-c-sharp-part-3.trophy # --description-- -Now that you've completed all of the "Add Logic to C# Console Applications" challenges, you should have earned a trophy for it on Microsoft's learning platform. +Now that you've completed all of the "Add Logic to C# Console Applications" challenges, you should have earned the trophy for it on the Microsoft Learn platform. If you don't see this trophy when viewing your achievements page, you have not completed all the tasks and your trophy cannot be verified. -Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is required to qualify to take the certification exam. +Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is **required** to qualify for the certification exam. 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 58d431728ba..1a0f1c91668 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 @@ -7,9 +7,9 @@ dashedName: add-decision-logic-to-your-code-using-if-else-and-else-if-statements # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-if-elseif-else/ and complete all the tasks for the "Add Decision Logic to Your Code Using if, else, and else if statements in C#" module. This is required to earn the "Create and Run Simple C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-if-elseif-else/ and complete all the tasks for the "Add Decision Logic to Your Code Using if, else, and else if statements in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 863f4b0e8e4..3ba95b9e155 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 @@ -7,9 +7,9 @@ dashedName: call-methods-from-the-dot-net-class-library-using-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-call-methods/ and complete all the tasks for the "Call Methods From the .NET Class Library Using C#" module. This is required to earn the "Create and Run Simple C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-call-methods/ and complete all the tasks for the "Call Methods From the .NET Class Library Using C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 38286900541..2fa7a6ca39e 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 @@ -7,9 +7,9 @@ dashedName: challenge-project-develop-foreach-and-if-elseif-else-structures-to-p # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/challenge-project-arrays-iteration-selection/ and complete all the tasks for the "Challenge Project - Develop foreach and if-elseif-else Structures to Process Array Data in C#" module. This is required to earn the "Create and Run Simple C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/challenge-project-arrays-iteration-selection/ and complete all the tasks for the "Challenge Project - Develop foreach and if-elseif-else Structures to Process Array Data in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 91685d5c3c6..6dba95ceb0e 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 @@ -7,9 +7,9 @@ dashedName: create-readable-code-with-conventions-whitespace-and-comments-in-c-s # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-readable-code/ and complete all the tasks for the "Create Readable Code with Conventions, Whitespace, and Comments in C#" module. This is required to earn the "Create and Run Simple C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-readable-code/ and complete all the tasks for the "Create Readable Code with Conventions, Whitespace, and Comments in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 5de8874c1f0..d27cf0cd1e9 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 @@ -7,9 +7,9 @@ dashedName: guided-project-develop-foreach-and-if-elseif-else-structures-to-proc # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/guided-project-arrays-iteration-selection/ and complete all the tasks for the "Guided Project - Develop foreach and if-elseif-else Structures to Process Array Data in C#" module. This is required to earn the "Create and Run Simple C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/guided-project-arrays-iteration-selection/ and complete all the tasks for the "Guided Project - Develop foreach and if-elseif-else Structures to Process Array Data in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 f20ca84fd5d..2b823ab1657 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 @@ -7,9 +7,9 @@ dashedName: install-and-configure-visual-studio-code # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/install-configure-visual-studio-code/ and complete all the tasks for the "Install and Configure Visual Studio Code" module. This is required to earn the "Create and Run Simple C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/install-configure-visual-studio-code/ and complete all the tasks for the "Install and Configure Visual Studio Code" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 85053bab391..e6c229032ca 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 @@ -7,9 +7,9 @@ dashedName: store-and-iterate-through-sequences-of-data-using-arrays-and-the-for # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-arrays/ and complete all the tasks for the "Store and Iterate Through Sequences of Data Using Arrays and the foreach Statement in C#" module. This is required to earn the "Create and Run Simple C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-arrays/ and complete all the tasks for the "Store and Iterate Through Sequences of Data Using Arrays and the foreach Statement in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/trophy-create-and-run-simple-c-sharp-console-applications.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/trophy-create-and-run-simple-c-sharp-console-applications.md index ee9ba18969f..84642b155e8 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/trophy-create-and-run-simple-c-sharp-console-applications.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/trophy-create-and-run-simple-c-sharp-console-applications.md @@ -8,6 +8,6 @@ msTrophyId: learn.wwl.get-started-c-sharp-part-2.trophy # --description-- -Now that you've completed all of the "Create and Run Simple C# Console Applications" challenges, you should have earned a trophy for it on Microsoft's learning platform. +Now that you've completed all of the "Create and Run Simple C# Console Applications" challenges, you should have earned the trophy for it on the Microsoft Learn platform. If you don't see this trophy when viewing your achievements page, you have not completed all the tasks and your trophy cannot be verified. -Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is required to qualify to take the certification exam. +Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is **required** to qualify for the certification exam. 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 c6cfab73810..74a50b662e2 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 @@ -7,9 +7,9 @@ dashedName: challenge-project-create-a-mini-game # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/challenge-project-create-mini-game/ and complete all the tasks for the "Challenge Project - Create a Mini-Game" module. This is required to earn the "Create Methods in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/challenge-project-create-mini-game/ and complete all the tasks for the "Challenge Project - Create a Mini-Game" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 7d800dc95d4..6a3cec26d7c 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 @@ -7,9 +7,9 @@ dashedName: create-c-sharp-methods-that-return-values # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/create-c-sharp-methods-return-values/ and complete all the tasks for the "Create C# Methods that Return Values" module. This is required to earn the "Create Methods in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/create-c-sharp-methods-return-values/ and complete all the tasks for the "Create C# Methods that Return Values" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 95d2f91e09f..4a74949d76a 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 @@ -7,9 +7,9 @@ dashedName: create-c-sharp-methods-with-parameters # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/create-c-sharp-methods-parameters/ and complete all the tasks for the "Create C# Methods with Parameters" module. This is required to earn the "Create Methods in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/create-c-sharp-methods-parameters/ and complete all the tasks for the "Create C# Methods with Parameters" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 40da74c905b..67cf7ef2173 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 @@ -7,9 +7,9 @@ dashedName: guided-project-plan-a-petting-zoo-visit # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/guided-project-visit-petting-zoo/ and complete all the tasks for the "Guided Project - Plan a Petting Zoo Visit" module. This is required to earn the "Create Methods in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/guided-project-visit-petting-zoo/ and complete all the tasks for the "Guided Project - Plan a Petting Zoo Visit" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/trophy-create-methods-in-c-sharp-console-applications.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/trophy-create-methods-in-c-sharp-console-applications.md index cf407d0c9c8..850916a4cb2 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/trophy-create-methods-in-c-sharp-console-applications.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/trophy-create-methods-in-c-sharp-console-applications.md @@ -8,6 +8,6 @@ msTrophyId: learn.wwl.get-started-c-sharp-part-5.trophy # --description-- -Now that you've completed all of the "Create Methods in C# Console Applications" challenges, you should have earned a trophy for it on Microsoft's learning platform. +Now that you've completed all of the "Create Methods in C# Console Applications" challenges, you should have earned the trophy for it on the Microsoft Learn platform. If you don't see this trophy when viewing your achievements page, you have not completed all the tasks and your trophy cannot be verified. -Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is required to qualify to take the certification exam. +Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is **required** to qualify for the certification exam. 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 010f4a86839..0a1a690df22 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 @@ -7,9 +7,9 @@ dashedName: write-your-first-c-sharp-method # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/write-first-c-sharp-method/ and complete all the tasks for the "Write Your First C# Method" module. This is required to earn the "Create Methods in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/write-first-c-sharp-method/ and complete all the tasks for the "Write Your First C# Method" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 445fc80c9db..d2a01cef8e0 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 @@ -7,9 +7,9 @@ dashedName: challenge-project-debug-a-c-sharp-console-application-using-visual-s # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/challenge-project-debug-c-sharp-console-application/ and complete all the tasks for the "Challenge Project - Debug a C# Console Application Using Visual Studio Code" module. This is required to earn the "Debug C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/challenge-project-debug-c-sharp-console-application/ and complete all the tasks for the "Challenge Project - Debug a C# Console Application Using Visual Studio Code" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 ed8c9f4f586..ca5a39cb5ac 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 @@ -7,9 +7,9 @@ dashedName: create-and-throw-exceptions-in-c-sharp-console-applications # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/create-throw-exceptions-c-sharp/ and complete all the tasks for the "Create and Throw Exceptions in C# Console Applications" module. This is required earn to the "Debug C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/create-throw-exceptions-c-sharp/ and complete all the tasks for the "Create and Throw Exceptions in C# Console Applications" module. This is **required** earn to the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 7a1f7b6b76b..51518624ab9 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 @@ -7,9 +7,9 @@ dashedName: guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-appl # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/guided-project-debug-handle-exceptions-c-sharp-console-application/ and complete all the tasks for the "Guided Project - Debug and Handle Exceptions in a C# Console Application Using Visual Studio Code" module. This is required to earn the "Debug C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/guided-project-debug-handle-exceptions-c-sharp-console-application/ and complete all the tasks for the "Guided Project - Debug and Handle Exceptions in a C# Console Application Using Visual Studio Code" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 81be41e65a5..264cafc40f0 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 @@ -7,9 +7,9 @@ dashedName: implement-exception-handling-in-c-sharp-console-applications # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/implement-exception-handling-c-sharp/ and complete all the tasks for the "Implement Exception Handling in C# Console Applications" module. This is required to earn the "Debug C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/implement-exception-handling-c-sharp/ and complete all the tasks for the "Implement Exception Handling in C# Console Applications" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 09fe87de22e..9690146dbdd 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 @@ -7,9 +7,9 @@ dashedName: implement-the-visual-studio-code-debugging-tools-for-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/implement-visual-studio-code-debugging-tools/ and complete all the tasks for the "Implement the Visual Studio Code Debugging Tools for C#" module. This is required to earn the "Debug C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/implement-visual-studio-code-debugging-tools/ and complete all the tasks for the "Implement the Visual Studio Code Debugging Tools for C#" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 af5cea3af54..5082edd0fba 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 @@ -7,9 +7,9 @@ dashedName: review-the-principles-of-code-debugging-and-exception-handling # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/review-principles-code-debugging-exception-handling-c-sharp/ and complete all the tasks for the "Review the Principles of Code Debugging and Exception Handling" module. This is required to earn the "Debug C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/review-principles-code-debugging-exception-handling-c-sharp/ and complete all the tasks for the "Review the Principles of Code Debugging and Exception Handling" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/trophy-debug-c-sharp-console-applications.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/trophy-debug-c-sharp-console-applications.md index e44e07a5981..261ddfe5c21 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/trophy-debug-c-sharp-console-applications.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/trophy-debug-c-sharp-console-applications.md @@ -8,6 +8,6 @@ msTrophyId: learn.wwl.get-started-c-sharp-part-6.trophy # --description-- -Now that you've completed all of the "Debug C# Console Applications" challenges, you should have earned a trophy for it on Microsoft's learning platform. +Now that you've completed all of the "Debug C# Console Applications" challenges, you should have earned the trophy for it on the Microsoft Learn platform. If you don't see this trophy when viewing your achievements page, you have not completed all the tasks and your trophy cannot be verified. -Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is required to qualify to take the certification exam. +Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is **required** to qualify for the certification exam. 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 5535a7735d9..ae6090709b9 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 @@ -7,9 +7,9 @@ dashedName: challenge-project-work-with-variable-data-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/challenge-project-work-variable-data-c-sharp/ and complete all the tasks for the "Challenge Project - Work with Variable Data in C#" module. This is required to earn the "Work with Variable Data in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/challenge-project-work-variable-data-c-sharp/ and complete all the tasks for the "Challenge Project - Work with Variable Data in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 391aafe7934..9a352f99813 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 @@ -7,9 +7,9 @@ dashedName: choose-the-correct-data-type-in-your-c-sharp-code # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-choose-data-type/ and complete all the tasks for the "Choose the Correct Data Type in Your C# Code" module. This is required to earn the "Work with Variable Data in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-choose-data-type/ and complete all the tasks for the "Choose the Correct Data Type in Your C# Code" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 5d404268eba..40188ab92c1 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 @@ -7,9 +7,9 @@ dashedName: convert-data-types-using-casting-and-conversion-techniques-in-c-shar # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-convert-cast/ and complete all the tasks for the "Convert Data Types Using Casting and Conversion Techniques in C#" module. This is required to earn the "Work with Variable Data in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-convert-cast/ and complete all the tasks for the "Convert Data Types Using Casting and Conversion Techniques in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 98746a03b83..727c09bd909 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 @@ -7,9 +7,9 @@ dashedName: format-alphanumeric-data-for-presentation-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-format-strings/ and complete all the tasks for the "Format Alphanumeric Data for Presentation in C#" module. This is required to earn the "Work with Variable Data in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-format-strings/ and complete all the tasks for the "Format Alphanumeric Data for Presentation in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 bd1ad787ef1..7e2fccfbd59 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 @@ -7,9 +7,9 @@ dashedName: guided-project-work-with-variable-data-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/guided-project-work-variable-data-c-sharp/ and complete all the tasks for the "Guided Project - Work with Variable Data in C#" module. This is required to earn the "Work with Variable Data in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/guided-project-work-variable-data-c-sharp/ and complete all the tasks for the "Guided Project - Work with Variable Data in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 1707c7bc46b..0c355ebc15d 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 @@ -7,9 +7,9 @@ dashedName: modify-the-content-of-string-using-built-in-string-data-type-methods # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-modify-content/ and complete all the tasks for the "Modify the Content of Strings Using Built-In String Data Type Methods in C#" module. This is required to earn the "Work with Variable Data in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-modify-content/ and complete all the tasks for the "Modify the Content of Strings Using Built-In String Data Type Methods in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 89eb890f477..9e5f8277216 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 @@ -7,9 +7,9 @@ dashedName: perform-operations-on-arrays-using-helpers-methods-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-arrays-operations/ and complete all the tasks for the "Perform Operations on Arrays Using Helper Methods in C#" module. This is required to earn the "Work with Variable Data in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-arrays-operations/ and complete all the tasks for the "Perform Operations on Arrays Using Helper Methods in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/trophy-work-with-variable-data-in-c-sharp-console-applications.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/trophy-work-with-variable-data-in-c-sharp-console-applications.md index c41d7abac51..59f6dfd85c8 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/trophy-work-with-variable-data-in-c-sharp-console-applications.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/trophy-work-with-variable-data-in-c-sharp-console-applications.md @@ -8,6 +8,6 @@ msTrophyId: learn.wwl.get-started-c-sharp-part-4.trophy # --description-- -Now that you've completed all of the "Work with Variable Data in C# Console Applications" challenges, you should have earned a trophy for it on Microsoft's learning platform. +Now that you've completed all of the "Work with Variable Data in C# Console Applications" challenges, you should have earned the trophy for it on the Microsoft Learn platform. If you don't see this trophy when viewing your achievements page, you have not completed all the tasks and your trophy cannot be verified. -Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is required to qualify to take the certification exam. +Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is **required** to qualify for the certification exam. 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 d7980f1b170..2fa4818f4d3 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 @@ -7,9 +7,9 @@ dashedName: guided-project-calculate-and-print-student-grades # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/guided-project-calculate-print-student-grades/ and complete all the tasks for the "Guided Project - Calculate and Print Student Grades" module. This is required to earn the "Write Your First Code Using C#" trophy. +1. Go to https://learn.microsoft.com/training/modules/guided-project-calculate-print-student-grades/ and complete all the tasks for the "Guided Project - Calculate and Print Student Grades" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 bc13b8ba9d4..a7e0bd988c2 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 @@ -7,16 +7,16 @@ dashedName: guided-project-calculate-final-gpa # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/guided-project-calculate-final-gpa/ and complete all the tasks for the "Guided Project - Calculate Final GPA" module. This is required to earn the "Write Your First Code Using C#" trophy. +1. Go to https://learn.microsoft.com/training/modules/guided-project-calculate-final-gpa/ and complete all the tasks for the "Guided Project - Calculate Final GPA" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- ## --text-- -Suppose `decimal gradePointAverage = 3.99872831;`. +Suppose `decimal gradePointAverage = 3.99872831m;`. What is the value of `(int) gradePointAverage`? 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 38c6578cb25..874e5cd5650 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 @@ -7,9 +7,9 @@ dashedName: perform-basic-operations-on-numbers-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-basic-operations/ and complete all the tasks for the "Perform Basic Operations on Numbers in C#" module. This is required to earn the "Write Your First Code Using C#" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-basic-operations/ and complete all the tasks for the "Perform Basic Operations on Numbers in C#" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 97952d51a26..f4d39f5bbca 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 @@ -7,9 +7,9 @@ dashedName: perform-basic-string-formatting-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-basic-formatting/ and complete all the tasks for the "Perform Basic String Formatting in C#" module. This is required to earn the "Write Your First Code Using C#" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-basic-formatting/ and complete all the tasks for the "Perform Basic String Formatting in C#" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 d90168d0b5c..c75f54c2d88 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 @@ -7,9 +7,9 @@ dashedName: store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-literals-variables/ and complete all the tasks for the "Store and Retrieve Data Using Literal and Variable Values in C#" module. This is required to earn the "Write Your First Code Using C#" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-literals-variables/ and complete all the tasks for the "Store and Retrieve Data Using Literal and Variable Values in C#" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/trophy-write-your-first-code-using-c-sharp.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/trophy-write-your-first-code-using-c-sharp.md index 477051a5def..c2cad526381 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/trophy-write-your-first-code-using-c-sharp.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/trophy-write-your-first-code-using-c-sharp.md @@ -8,6 +8,6 @@ msTrophyId: learn.wwl.get-started-c-sharp-part-1.trophy # --description-- -Now that you've completed all of the "Write Your First Code Using C#" challenges, you should have earned a trophy for it on Microsoft's learning platform. +Now that you've completed all of the "Write Your First Code Using C#" challenges, you should have earned the trophy for it on the Microsoft Learn platform. If you don't see this trophy when viewing your achievements page, you have not completed all the tasks and your trophy cannot be verified. -Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is required to qualify to take the certification exam. +Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is **required** to qualify for the certification exam. 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 510536eaab4..1295cf64070 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 @@ -7,9 +7,9 @@ dashedName: write-your-first-c-sharp-code # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-write-first/ and complete all the tasks for the "Write Your First C# Code" module. This is required to earn the "Write Your First Code Using C#" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-write-first/ and complete all the tasks in the "Write Your First C# Code" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/chinese-traditional/02-javascript-algorithms-and-data-structures/basic-javascript/manipulate-arrays-with-push.md b/curriculum/challenges/chinese-traditional/02-javascript-algorithms-and-data-structures/basic-javascript/manipulate-arrays-with-push.md index 4475410607f..466bc182614 100644 --- a/curriculum/challenges/chinese-traditional/02-javascript-algorithms-and-data-structures/basic-javascript/manipulate-arrays-with-push.md +++ b/curriculum/challenges/chinese-traditional/02-javascript-algorithms-and-data-structures/basic-javascript/manipulate-arrays-with-push.md @@ -9,21 +9,21 @@ dashedName: manipulate-arrays-with-push # --description-- -一個將數據添加到數組末尾的簡單方法是 `push()` 函數。 +An easy way to append data to the end of an array is via the `push()` method. -`.push()` 接受一個或多個參數(parameters),並把它壓入到數組的末尾。 +The `push()` method takes one or more arguments and appends them to the end of the array, in the order in which they appear. It returns the new length of the array. 示例: ```js const arr1 = [1, 2, 3]; -arr1.push(4); +arr1.push(4, 5); const arr2 = ["Stimpson", "J", "cat"]; arr2.push(["happy", "joy"]); ``` -`arr1` 現在值爲 `[1, 2, 3, 4]`,`arr2` 值爲 `["Stimpson", "J", "cat", ["happy", "joy"]]`。 +`arr1` now has the value `[1, 2, 3, 4, 5]` and `arr2` has the value `["Stimpson", "J", "cat", ["happy", "joy"]]`. # --instructions-- diff --git a/curriculum/challenges/chinese-traditional/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfa22d1b521be39a3de7be0.md b/curriculum/challenges/chinese-traditional/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfa22d1b521be39a3de7be0.md index 88d01aa01ee..d375b943701 100644 --- a/curriculum/challenges/chinese-traditional/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfa22d1b521be39a3de7be0.md +++ b/curriculum/challenges/chinese-traditional/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfa22d1b521be39a3de7be0.md @@ -7,9 +7,13 @@ dashedName: step-12 # --description-- -在前一步驟中,你將單詞 `link to cat pictures` 轉換爲一個鏈接,將它們放置在開始和結束錨點(`a`)標籤之間。 你可以對元素內的單詞做同樣的操作,例如 `p` 元素。 +You can turn any text into a link, such as the text inside of a `p` element. -在你的 `p` 元素的文本中,將單詞 `cat photos` 轉換爲指向 `https://freecatphotoapp.com` 的鏈接,通過把這些單詞放到開始和結束錨點標籤(`a`)內來實現。 +``` html +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. Then set the `href` attribute to `https://freecatphotoapp.com/` # --hints-- diff --git a/curriculum/challenges/chinese-traditional/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/6476f5c17f99146071ee884c.md b/curriculum/challenges/chinese-traditional/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/6476f5c17f99146071ee884c.md index 03ea4e8598b..71b68d01fe8 100644 --- a/curriculum/challenges/chinese-traditional/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/6476f5c17f99146071ee884c.md +++ b/curriculum/challenges/chinese-traditional/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/6476f5c17f99146071ee884c.md @@ -11,7 +11,7 @@ You could see that nothing happens. The `.cat-head` element did not move despite When you use the `relative` value, the element is still positioned according to the normal flow of the document, but the `top`, `left`, `bottom`, and `right` values become active. -Instead of `static`, give you `.cat-head` a position of `relative`, and leave both `top` and `left` properties as they are. +Instead of `static`, give your `.cat-head` a position of `relative`, and leave both `top` and `left` properties as they are. # --hints-- 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 f3da4b4fb3f..7c50ac42745 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 @@ -7,9 +7,9 @@ dashedName: add-looping-logic-to-your-code-using-the-do-while-and-while-statemen # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-do-while/ and complete all the tasks for the "Add Looping Logic to Your Code Using the do-while and while Statements in C#" module. This is required to earn the "Add Logic to C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-do-while/ and complete all the tasks for the "Add Looping Logic to Your Code Using the do-while and while Statements in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 f63f55493b2..f6641f0316f 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 @@ -7,9 +7,9 @@ dashedName: branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-switch-case/ and complete all the tasks for the "Branch the Flow of Code Using the switch-case Construct in C#" module. This is required to earn the "Add Logic to C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-switch-case/ and complete all the tasks for the "Branch the Flow of Code Using the switch-case Construct in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 9e0f17ab674..265d870150e 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 @@ -7,9 +7,9 @@ dashedName: challenge-project-develop-branching-and-looping-structures-in-c-shar # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/challenge-project-develop-branching-looping-structures-c-sharp/ and complete all the tasks for the "Challenge Project - Develop Branching and Looping Structures in C#" module. This is required to earn the "Add Logic to C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/challenge-project-develop-branching-looping-structures-c-sharp/ and complete all the tasks for the "Challenge Project - Develop Branching and Looping Structures in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 ea77a8f1bfc..daa95972023 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 @@ -7,9 +7,9 @@ dashedName: control-variable-scope-and-logic-using-code-blocks-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-code-blocks/ and complete all the tasks for the "Control Variable Scope and Logic Using Code Blocks in C#" module. This is required to earn the "Add Logic to C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-code-blocks/ and complete all the tasks for the "Control Variable Scope and Logic Using Code Blocks in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 81d114a0d00..1f1c72e0c8a 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 @@ -7,9 +7,9 @@ dashedName: evaluate-boolean-expressions-to-make-decisions-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-evaluate-boolean-expressions/ and complete all the tasks for the "Evaluate Boolean Expressions to Make Decisions in C#" module. This is required to earn the "Add Logic to C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-evaluate-boolean-expressions/ and complete all the tasks for the "Evaluate Boolean Expressions to Make Decisions in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 868a9ba5696..7cfc12d242d 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 @@ -7,9 +7,9 @@ dashedName: guided-project-develop-conditional-branching-and-looping-structures- # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/guided-project-develop-conditional-branching-looping/ and complete all the tasks for the "Guided Project - Develop Conditional Branching and Looping Structures in C#" module. This is required to earn the "Add Logic to C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/guided-project-develop-conditional-branching-looping/ and complete all the tasks for the "Guided Project - Develop Conditional Branching and Looping Structures in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 ecbc1c26392..fbc5beccffd 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 @@ -7,9 +7,9 @@ dashedName: iterate-through-a-code-block-using-the-for-statement-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-for/ and complete all the tasks for the "Iterate Through a Code Block Using the for Statement in C#" module. This is required to earn the "Add Logic to C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-for/ and complete all the tasks for the "Iterate Through a Code Block Using the for Statement in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/trophy-add-logic-to-c-sharp-console-applications.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/trophy-add-logic-to-c-sharp-console-applications.md index 92b3c911a26..31e5799bf8a 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/trophy-add-logic-to-c-sharp-console-applications.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/trophy-add-logic-to-c-sharp-console-applications.md @@ -8,6 +8,6 @@ msTrophyId: learn.wwl.get-started-c-sharp-part-3.trophy # --description-- -Now that you've completed all of the "Add Logic to C# Console Applications" challenges, you should have earned a trophy for it on Microsoft's learning platform. +Now that you've completed all of the "Add Logic to C# Console Applications" challenges, you should have earned the trophy for it on the Microsoft Learn platform. If you don't see this trophy when viewing your achievements page, you have not completed all the tasks and your trophy cannot be verified. -Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is required to qualify to take the certification exam. +Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is **required** to qualify for the certification exam. 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 58d431728ba..1a0f1c91668 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 @@ -7,9 +7,9 @@ dashedName: add-decision-logic-to-your-code-using-if-else-and-else-if-statements # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-if-elseif-else/ and complete all the tasks for the "Add Decision Logic to Your Code Using if, else, and else if statements in C#" module. This is required to earn the "Create and Run Simple C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-if-elseif-else/ and complete all the tasks for the "Add Decision Logic to Your Code Using if, else, and else if statements in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 863f4b0e8e4..3ba95b9e155 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 @@ -7,9 +7,9 @@ dashedName: call-methods-from-the-dot-net-class-library-using-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-call-methods/ and complete all the tasks for the "Call Methods From the .NET Class Library Using C#" module. This is required to earn the "Create and Run Simple C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-call-methods/ and complete all the tasks for the "Call Methods From the .NET Class Library Using C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 38286900541..2fa7a6ca39e 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 @@ -7,9 +7,9 @@ dashedName: challenge-project-develop-foreach-and-if-elseif-else-structures-to-p # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/challenge-project-arrays-iteration-selection/ and complete all the tasks for the "Challenge Project - Develop foreach and if-elseif-else Structures to Process Array Data in C#" module. This is required to earn the "Create and Run Simple C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/challenge-project-arrays-iteration-selection/ and complete all the tasks for the "Challenge Project - Develop foreach and if-elseif-else Structures to Process Array Data in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 91685d5c3c6..6dba95ceb0e 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 @@ -7,9 +7,9 @@ dashedName: create-readable-code-with-conventions-whitespace-and-comments-in-c-s # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-readable-code/ and complete all the tasks for the "Create Readable Code with Conventions, Whitespace, and Comments in C#" module. This is required to earn the "Create and Run Simple C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-readable-code/ and complete all the tasks for the "Create Readable Code with Conventions, Whitespace, and Comments in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 5de8874c1f0..d27cf0cd1e9 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 @@ -7,9 +7,9 @@ dashedName: guided-project-develop-foreach-and-if-elseif-else-structures-to-proc # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/guided-project-arrays-iteration-selection/ and complete all the tasks for the "Guided Project - Develop foreach and if-elseif-else Structures to Process Array Data in C#" module. This is required to earn the "Create and Run Simple C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/guided-project-arrays-iteration-selection/ and complete all the tasks for the "Guided Project - Develop foreach and if-elseif-else Structures to Process Array Data in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 f20ca84fd5d..2b823ab1657 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 @@ -7,9 +7,9 @@ dashedName: install-and-configure-visual-studio-code # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/install-configure-visual-studio-code/ and complete all the tasks for the "Install and Configure Visual Studio Code" module. This is required to earn the "Create and Run Simple C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/install-configure-visual-studio-code/ and complete all the tasks for the "Install and Configure Visual Studio Code" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 85053bab391..e6c229032ca 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 @@ -7,9 +7,9 @@ dashedName: store-and-iterate-through-sequences-of-data-using-arrays-and-the-for # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-arrays/ and complete all the tasks for the "Store and Iterate Through Sequences of Data Using Arrays and the foreach Statement in C#" module. This is required to earn the "Create and Run Simple C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-arrays/ and complete all the tasks for the "Store and Iterate Through Sequences of Data Using Arrays and the foreach Statement in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/trophy-create-and-run-simple-c-sharp-console-applications.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/trophy-create-and-run-simple-c-sharp-console-applications.md index ee9ba18969f..84642b155e8 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/trophy-create-and-run-simple-c-sharp-console-applications.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/trophy-create-and-run-simple-c-sharp-console-applications.md @@ -8,6 +8,6 @@ msTrophyId: learn.wwl.get-started-c-sharp-part-2.trophy # --description-- -Now that you've completed all of the "Create and Run Simple C# Console Applications" challenges, you should have earned a trophy for it on Microsoft's learning platform. +Now that you've completed all of the "Create and Run Simple C# Console Applications" challenges, you should have earned the trophy for it on the Microsoft Learn platform. If you don't see this trophy when viewing your achievements page, you have not completed all the tasks and your trophy cannot be verified. -Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is required to qualify to take the certification exam. +Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is **required** to qualify for the certification exam. 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 c6cfab73810..74a50b662e2 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 @@ -7,9 +7,9 @@ dashedName: challenge-project-create-a-mini-game # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/challenge-project-create-mini-game/ and complete all the tasks for the "Challenge Project - Create a Mini-Game" module. This is required to earn the "Create Methods in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/challenge-project-create-mini-game/ and complete all the tasks for the "Challenge Project - Create a Mini-Game" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 7d800dc95d4..6a3cec26d7c 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 @@ -7,9 +7,9 @@ dashedName: create-c-sharp-methods-that-return-values # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/create-c-sharp-methods-return-values/ and complete all the tasks for the "Create C# Methods that Return Values" module. This is required to earn the "Create Methods in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/create-c-sharp-methods-return-values/ and complete all the tasks for the "Create C# Methods that Return Values" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 95d2f91e09f..4a74949d76a 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 @@ -7,9 +7,9 @@ dashedName: create-c-sharp-methods-with-parameters # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/create-c-sharp-methods-parameters/ and complete all the tasks for the "Create C# Methods with Parameters" module. This is required to earn the "Create Methods in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/create-c-sharp-methods-parameters/ and complete all the tasks for the "Create C# Methods with Parameters" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 40da74c905b..67cf7ef2173 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 @@ -7,9 +7,9 @@ dashedName: guided-project-plan-a-petting-zoo-visit # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/guided-project-visit-petting-zoo/ and complete all the tasks for the "Guided Project - Plan a Petting Zoo Visit" module. This is required to earn the "Create Methods in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/guided-project-visit-petting-zoo/ and complete all the tasks for the "Guided Project - Plan a Petting Zoo Visit" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/trophy-create-methods-in-c-sharp-console-applications.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/trophy-create-methods-in-c-sharp-console-applications.md index cf407d0c9c8..850916a4cb2 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/trophy-create-methods-in-c-sharp-console-applications.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/trophy-create-methods-in-c-sharp-console-applications.md @@ -8,6 +8,6 @@ msTrophyId: learn.wwl.get-started-c-sharp-part-5.trophy # --description-- -Now that you've completed all of the "Create Methods in C# Console Applications" challenges, you should have earned a trophy for it on Microsoft's learning platform. +Now that you've completed all of the "Create Methods in C# Console Applications" challenges, you should have earned the trophy for it on the Microsoft Learn platform. If you don't see this trophy when viewing your achievements page, you have not completed all the tasks and your trophy cannot be verified. -Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is required to qualify to take the certification exam. +Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is **required** to qualify for the certification exam. 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 010f4a86839..0a1a690df22 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 @@ -7,9 +7,9 @@ dashedName: write-your-first-c-sharp-method # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/write-first-c-sharp-method/ and complete all the tasks for the "Write Your First C# Method" module. This is required to earn the "Create Methods in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/write-first-c-sharp-method/ and complete all the tasks for the "Write Your First C# Method" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 445fc80c9db..d2a01cef8e0 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 @@ -7,9 +7,9 @@ dashedName: challenge-project-debug-a-c-sharp-console-application-using-visual-s # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/challenge-project-debug-c-sharp-console-application/ and complete all the tasks for the "Challenge Project - Debug a C# Console Application Using Visual Studio Code" module. This is required to earn the "Debug C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/challenge-project-debug-c-sharp-console-application/ and complete all the tasks for the "Challenge Project - Debug a C# Console Application Using Visual Studio Code" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 ed8c9f4f586..ca5a39cb5ac 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 @@ -7,9 +7,9 @@ dashedName: create-and-throw-exceptions-in-c-sharp-console-applications # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/create-throw-exceptions-c-sharp/ and complete all the tasks for the "Create and Throw Exceptions in C# Console Applications" module. This is required earn to the "Debug C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/create-throw-exceptions-c-sharp/ and complete all the tasks for the "Create and Throw Exceptions in C# Console Applications" module. This is **required** earn to the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 7a1f7b6b76b..51518624ab9 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 @@ -7,9 +7,9 @@ dashedName: guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-appl # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/guided-project-debug-handle-exceptions-c-sharp-console-application/ and complete all the tasks for the "Guided Project - Debug and Handle Exceptions in a C# Console Application Using Visual Studio Code" module. This is required to earn the "Debug C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/guided-project-debug-handle-exceptions-c-sharp-console-application/ and complete all the tasks for the "Guided Project - Debug and Handle Exceptions in a C# Console Application Using Visual Studio Code" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 81be41e65a5..264cafc40f0 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 @@ -7,9 +7,9 @@ dashedName: implement-exception-handling-in-c-sharp-console-applications # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/implement-exception-handling-c-sharp/ and complete all the tasks for the "Implement Exception Handling in C# Console Applications" module. This is required to earn the "Debug C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/implement-exception-handling-c-sharp/ and complete all the tasks for the "Implement Exception Handling in C# Console Applications" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 09fe87de22e..9690146dbdd 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 @@ -7,9 +7,9 @@ dashedName: implement-the-visual-studio-code-debugging-tools-for-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/implement-visual-studio-code-debugging-tools/ and complete all the tasks for the "Implement the Visual Studio Code Debugging Tools for C#" module. This is required to earn the "Debug C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/implement-visual-studio-code-debugging-tools/ and complete all the tasks for the "Implement the Visual Studio Code Debugging Tools for C#" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 af5cea3af54..5082edd0fba 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 @@ -7,9 +7,9 @@ dashedName: review-the-principles-of-code-debugging-and-exception-handling # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/review-principles-code-debugging-exception-handling-c-sharp/ and complete all the tasks for the "Review the Principles of Code Debugging and Exception Handling" module. This is required to earn the "Debug C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/review-principles-code-debugging-exception-handling-c-sharp/ and complete all the tasks for the "Review the Principles of Code Debugging and Exception Handling" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/trophy-debug-c-sharp-console-applications.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/trophy-debug-c-sharp-console-applications.md index e44e07a5981..261ddfe5c21 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/trophy-debug-c-sharp-console-applications.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/trophy-debug-c-sharp-console-applications.md @@ -8,6 +8,6 @@ msTrophyId: learn.wwl.get-started-c-sharp-part-6.trophy # --description-- -Now that you've completed all of the "Debug C# Console Applications" challenges, you should have earned a trophy for it on Microsoft's learning platform. +Now that you've completed all of the "Debug C# Console Applications" challenges, you should have earned the trophy for it on the Microsoft Learn platform. If you don't see this trophy when viewing your achievements page, you have not completed all the tasks and your trophy cannot be verified. -Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is required to qualify to take the certification exam. +Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is **required** to qualify for the certification exam. 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 5535a7735d9..ae6090709b9 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 @@ -7,9 +7,9 @@ dashedName: challenge-project-work-with-variable-data-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/challenge-project-work-variable-data-c-sharp/ and complete all the tasks for the "Challenge Project - Work with Variable Data in C#" module. This is required to earn the "Work with Variable Data in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/challenge-project-work-variable-data-c-sharp/ and complete all the tasks for the "Challenge Project - Work with Variable Data in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 391aafe7934..9a352f99813 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 @@ -7,9 +7,9 @@ dashedName: choose-the-correct-data-type-in-your-c-sharp-code # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-choose-data-type/ and complete all the tasks for the "Choose the Correct Data Type in Your C# Code" module. This is required to earn the "Work with Variable Data in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-choose-data-type/ and complete all the tasks for the "Choose the Correct Data Type in Your C# Code" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 5d404268eba..40188ab92c1 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 @@ -7,9 +7,9 @@ dashedName: convert-data-types-using-casting-and-conversion-techniques-in-c-shar # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-convert-cast/ and complete all the tasks for the "Convert Data Types Using Casting and Conversion Techniques in C#" module. This is required to earn the "Work with Variable Data in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-convert-cast/ and complete all the tasks for the "Convert Data Types Using Casting and Conversion Techniques in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 98746a03b83..727c09bd909 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 @@ -7,9 +7,9 @@ dashedName: format-alphanumeric-data-for-presentation-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-format-strings/ and complete all the tasks for the "Format Alphanumeric Data for Presentation in C#" module. This is required to earn the "Work with Variable Data in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-format-strings/ and complete all the tasks for the "Format Alphanumeric Data for Presentation in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 bd1ad787ef1..7e2fccfbd59 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 @@ -7,9 +7,9 @@ dashedName: guided-project-work-with-variable-data-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/guided-project-work-variable-data-c-sharp/ and complete all the tasks for the "Guided Project - Work with Variable Data in C#" module. This is required to earn the "Work with Variable Data in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/guided-project-work-variable-data-c-sharp/ and complete all the tasks for the "Guided Project - Work with Variable Data in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 1707c7bc46b..0c355ebc15d 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 @@ -7,9 +7,9 @@ dashedName: modify-the-content-of-string-using-built-in-string-data-type-methods # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-modify-content/ and complete all the tasks for the "Modify the Content of Strings Using Built-In String Data Type Methods in C#" module. This is required to earn the "Work with Variable Data in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-modify-content/ and complete all the tasks for the "Modify the Content of Strings Using Built-In String Data Type Methods in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 89eb890f477..9e5f8277216 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 @@ -7,9 +7,9 @@ dashedName: perform-operations-on-arrays-using-helpers-methods-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-arrays-operations/ and complete all the tasks for the "Perform Operations on Arrays Using Helper Methods in C#" module. This is required to earn the "Work with Variable Data in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-arrays-operations/ and complete all the tasks for the "Perform Operations on Arrays Using Helper Methods in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/trophy-work-with-variable-data-in-c-sharp-console-applications.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/trophy-work-with-variable-data-in-c-sharp-console-applications.md index c41d7abac51..59f6dfd85c8 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/trophy-work-with-variable-data-in-c-sharp-console-applications.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/trophy-work-with-variable-data-in-c-sharp-console-applications.md @@ -8,6 +8,6 @@ msTrophyId: learn.wwl.get-started-c-sharp-part-4.trophy # --description-- -Now that you've completed all of the "Work with Variable Data in C# Console Applications" challenges, you should have earned a trophy for it on Microsoft's learning platform. +Now that you've completed all of the "Work with Variable Data in C# Console Applications" challenges, you should have earned the trophy for it on the Microsoft Learn platform. If you don't see this trophy when viewing your achievements page, you have not completed all the tasks and your trophy cannot be verified. -Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is required to qualify to take the certification exam. +Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is **required** to qualify for the certification exam. 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 d7980f1b170..2fa4818f4d3 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 @@ -7,9 +7,9 @@ dashedName: guided-project-calculate-and-print-student-grades # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/guided-project-calculate-print-student-grades/ and complete all the tasks for the "Guided Project - Calculate and Print Student Grades" module. This is required to earn the "Write Your First Code Using C#" trophy. +1. Go to https://learn.microsoft.com/training/modules/guided-project-calculate-print-student-grades/ and complete all the tasks for the "Guided Project - Calculate and Print Student Grades" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 bc13b8ba9d4..a7e0bd988c2 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 @@ -7,16 +7,16 @@ dashedName: guided-project-calculate-final-gpa # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/guided-project-calculate-final-gpa/ and complete all the tasks for the "Guided Project - Calculate Final GPA" module. This is required to earn the "Write Your First Code Using C#" trophy. +1. Go to https://learn.microsoft.com/training/modules/guided-project-calculate-final-gpa/ and complete all the tasks for the "Guided Project - Calculate Final GPA" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- ## --text-- -Suppose `decimal gradePointAverage = 3.99872831;`. +Suppose `decimal gradePointAverage = 3.99872831m;`. What is the value of `(int) gradePointAverage`? 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 38c6578cb25..874e5cd5650 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 @@ -7,9 +7,9 @@ dashedName: perform-basic-operations-on-numbers-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-basic-operations/ and complete all the tasks for the "Perform Basic Operations on Numbers in C#" module. This is required to earn the "Write Your First Code Using C#" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-basic-operations/ and complete all the tasks for the "Perform Basic Operations on Numbers in C#" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 97952d51a26..f4d39f5bbca 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 @@ -7,9 +7,9 @@ dashedName: perform-basic-string-formatting-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-basic-formatting/ and complete all the tasks for the "Perform Basic String Formatting in C#" module. This is required to earn the "Write Your First Code Using C#" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-basic-formatting/ and complete all the tasks for the "Perform Basic String Formatting in C#" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 d90168d0b5c..c75f54c2d88 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 @@ -7,9 +7,9 @@ dashedName: store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-literals-variables/ and complete all the tasks for the "Store and Retrieve Data Using Literal and Variable Values in C#" module. This is required to earn the "Write Your First Code Using C#" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-literals-variables/ and complete all the tasks for the "Store and Retrieve Data Using Literal and Variable Values in C#" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/trophy-write-your-first-code-using-c-sharp.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/trophy-write-your-first-code-using-c-sharp.md index 477051a5def..c2cad526381 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/trophy-write-your-first-code-using-c-sharp.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/trophy-write-your-first-code-using-c-sharp.md @@ -8,6 +8,6 @@ msTrophyId: learn.wwl.get-started-c-sharp-part-1.trophy # --description-- -Now that you've completed all of the "Write Your First Code Using C#" challenges, you should have earned a trophy for it on Microsoft's learning platform. +Now that you've completed all of the "Write Your First Code Using C#" challenges, you should have earned the trophy for it on the Microsoft Learn platform. If you don't see this trophy when viewing your achievements page, you have not completed all the tasks and your trophy cannot be verified. -Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is required to qualify to take the certification exam. +Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is **required** to qualify for the certification exam. 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 510536eaab4..84732620b7f 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 @@ -1,34 +1,34 @@ --- id: 647e239e8acb466c97ccbf05 -title: 'Write Your First C# Code' +title: '編寫你的第一段 C# 代碼' challengeType: 19 dashedName: write-your-first-c-sharp-code --- # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +這個挑戰將有一部分在 Microsoft Learn 平臺上完成。 請按照如下說明來完成挑戰: -1. Go to https://learn.microsoft.com/training/modules/csharp-write-first/ and complete all the tasks for the "Write Your First C# Code" module. This is required to earn the "Write Your First Code Using C#" trophy. -1. When you are finished, come back and correctly answer the question below. +1. 跳轉到 https://learn.microsoft.com/training/modules/csharp-write-first/,然後完成“編寫第一個 C# 代碼”模塊的所有任務。 這是在 Microsoft Learn 上獲得“使用 C# 編寫第一個代碼”的獎盃以及參加認證考試所**必需**的。 +1. 完成後,返回並正確回答下面的問題。 # --question-- ## --text-- -What is the difference between `Console.Write` and `Console.WriteLine`? +`Console.Write` 和 `Console.WriteLine`有什麼區別? ## --answers-- -`Console.Write` prints the output on a new line. +`Console.Write` 在新一行上打印輸出。 --- -`Console.WriteLine` prints the output on a new line. +`Console.WriteLine` 在新一行上打印輸出。 --- -`Console.WriteLine` appends a new line after the output. +`Console.WriteLine` 在輸出後插入一個新行。 ## --video-solution-- diff --git a/curriculum/challenges/chinese/02-javascript-algorithms-and-data-structures/basic-javascript/manipulate-arrays-with-push.md b/curriculum/challenges/chinese/02-javascript-algorithms-and-data-structures/basic-javascript/manipulate-arrays-with-push.md index 1395ef96552..9fc668884f0 100644 --- a/curriculum/challenges/chinese/02-javascript-algorithms-and-data-structures/basic-javascript/manipulate-arrays-with-push.md +++ b/curriculum/challenges/chinese/02-javascript-algorithms-and-data-structures/basic-javascript/manipulate-arrays-with-push.md @@ -9,21 +9,21 @@ dashedName: manipulate-arrays-with-push # --description-- -一个将数据添加到数组末尾的简单方法是 `push()` 函数。 +An easy way to append data to the end of an array is via the `push()` method. -`.push()` 接受一个或多个参数(parameters),并把它压入到数组的末尾。 +The `push()` method takes one or more arguments and appends them to the end of the array, in the order in which they appear. It returns the new length of the array. 示例: ```js const arr1 = [1, 2, 3]; -arr1.push(4); +arr1.push(4, 5); const arr2 = ["Stimpson", "J", "cat"]; arr2.push(["happy", "joy"]); ``` -`arr1` 现在值为 `[1, 2, 3, 4]`,`arr2` 值为 `["Stimpson", "J", "cat", ["happy", "joy"]]`。 +`arr1` now has the value `[1, 2, 3, 4, 5]` and `arr2` has the value `["Stimpson", "J", "cat", ["happy", "joy"]]`. # --instructions-- diff --git a/curriculum/challenges/chinese/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfa22d1b521be39a3de7be0.md b/curriculum/challenges/chinese/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfa22d1b521be39a3de7be0.md index 8d9c5f5de5a..3b18dd903c4 100644 --- a/curriculum/challenges/chinese/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfa22d1b521be39a3de7be0.md +++ b/curriculum/challenges/chinese/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfa22d1b521be39a3de7be0.md @@ -7,9 +7,13 @@ dashedName: step-12 # --description-- -在前一步骤中,你将单词 `link to cat pictures` 转换为一个链接,将它们放置在开始和结束锚点(`a`)标签之间。 你可以对元素内的单词做同样的操作,例如 `p` 元素。 +You can turn any text into a link, such as the text inside of a `p` element. -在你的 `p` 元素的文本中,将单词 `cat photos` 转换为指向 `https://freecatphotoapp.com` 的链接,通过把这些单词放到开始和结束锚点标签(`a`)内来实现。 +``` html +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. Then set the `href` attribute to `https://freecatphotoapp.com/` # --hints-- diff --git a/curriculum/challenges/chinese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/6476f5c17f99146071ee884c.md b/curriculum/challenges/chinese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/6476f5c17f99146071ee884c.md index 03ea4e8598b..71b68d01fe8 100644 --- a/curriculum/challenges/chinese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/6476f5c17f99146071ee884c.md +++ b/curriculum/challenges/chinese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/6476f5c17f99146071ee884c.md @@ -11,7 +11,7 @@ You could see that nothing happens. The `.cat-head` element did not move despite When you use the `relative` value, the element is still positioned according to the normal flow of the document, but the `top`, `left`, `bottom`, and `right` values become active. -Instead of `static`, give you `.cat-head` a position of `relative`, and leave both `top` and `left` properties as they are. +Instead of `static`, give your `.cat-head` a position of `relative`, and leave both `top` and `left` properties as they are. # --hints-- 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 f3da4b4fb3f..7c50ac42745 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 @@ -7,9 +7,9 @@ dashedName: add-looping-logic-to-your-code-using-the-do-while-and-while-statemen # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-do-while/ and complete all the tasks for the "Add Looping Logic to Your Code Using the do-while and while Statements in C#" module. This is required to earn the "Add Logic to C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-do-while/ and complete all the tasks for the "Add Looping Logic to Your Code Using the do-while and while Statements in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 f63f55493b2..f6641f0316f 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 @@ -7,9 +7,9 @@ dashedName: branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-switch-case/ and complete all the tasks for the "Branch the Flow of Code Using the switch-case Construct in C#" module. This is required to earn the "Add Logic to C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-switch-case/ and complete all the tasks for the "Branch the Flow of Code Using the switch-case Construct in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 9e0f17ab674..265d870150e 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 @@ -7,9 +7,9 @@ dashedName: challenge-project-develop-branching-and-looping-structures-in-c-shar # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/challenge-project-develop-branching-looping-structures-c-sharp/ and complete all the tasks for the "Challenge Project - Develop Branching and Looping Structures in C#" module. This is required to earn the "Add Logic to C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/challenge-project-develop-branching-looping-structures-c-sharp/ and complete all the tasks for the "Challenge Project - Develop Branching and Looping Structures in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 ea77a8f1bfc..daa95972023 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 @@ -7,9 +7,9 @@ dashedName: control-variable-scope-and-logic-using-code-blocks-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-code-blocks/ and complete all the tasks for the "Control Variable Scope and Logic Using Code Blocks in C#" module. This is required to earn the "Add Logic to C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-code-blocks/ and complete all the tasks for the "Control Variable Scope and Logic Using Code Blocks in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 81d114a0d00..1f1c72e0c8a 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 @@ -7,9 +7,9 @@ dashedName: evaluate-boolean-expressions-to-make-decisions-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-evaluate-boolean-expressions/ and complete all the tasks for the "Evaluate Boolean Expressions to Make Decisions in C#" module. This is required to earn the "Add Logic to C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-evaluate-boolean-expressions/ and complete all the tasks for the "Evaluate Boolean Expressions to Make Decisions in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 868a9ba5696..7cfc12d242d 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 @@ -7,9 +7,9 @@ dashedName: guided-project-develop-conditional-branching-and-looping-structures- # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/guided-project-develop-conditional-branching-looping/ and complete all the tasks for the "Guided Project - Develop Conditional Branching and Looping Structures in C#" module. This is required to earn the "Add Logic to C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/guided-project-develop-conditional-branching-looping/ and complete all the tasks for the "Guided Project - Develop Conditional Branching and Looping Structures in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 ecbc1c26392..fbc5beccffd 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 @@ -7,9 +7,9 @@ dashedName: iterate-through-a-code-block-using-the-for-statement-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-for/ and complete all the tasks for the "Iterate Through a Code Block Using the for Statement in C#" module. This is required to earn the "Add Logic to C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-for/ and complete all the tasks for the "Iterate Through a Code Block Using the for Statement in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/trophy-add-logic-to-c-sharp-console-applications.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/trophy-add-logic-to-c-sharp-console-applications.md index 92b3c911a26..31e5799bf8a 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/trophy-add-logic-to-c-sharp-console-applications.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/trophy-add-logic-to-c-sharp-console-applications.md @@ -8,6 +8,6 @@ msTrophyId: learn.wwl.get-started-c-sharp-part-3.trophy # --description-- -Now that you've completed all of the "Add Logic to C# Console Applications" challenges, you should have earned a trophy for it on Microsoft's learning platform. +Now that you've completed all of the "Add Logic to C# Console Applications" challenges, you should have earned the trophy for it on the Microsoft Learn platform. If you don't see this trophy when viewing your achievements page, you have not completed all the tasks and your trophy cannot be verified. -Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is required to qualify to take the certification exam. +Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is **required** to qualify for the certification exam. 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 58d431728ba..1a0f1c91668 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 @@ -7,9 +7,9 @@ dashedName: add-decision-logic-to-your-code-using-if-else-and-else-if-statements # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-if-elseif-else/ and complete all the tasks for the "Add Decision Logic to Your Code Using if, else, and else if statements in C#" module. This is required to earn the "Create and Run Simple C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-if-elseif-else/ and complete all the tasks for the "Add Decision Logic to Your Code Using if, else, and else if statements in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 863f4b0e8e4..3ba95b9e155 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 @@ -7,9 +7,9 @@ dashedName: call-methods-from-the-dot-net-class-library-using-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-call-methods/ and complete all the tasks for the "Call Methods From the .NET Class Library Using C#" module. This is required to earn the "Create and Run Simple C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-call-methods/ and complete all the tasks for the "Call Methods From the .NET Class Library Using C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 38286900541..2fa7a6ca39e 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 @@ -7,9 +7,9 @@ dashedName: challenge-project-develop-foreach-and-if-elseif-else-structures-to-p # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/challenge-project-arrays-iteration-selection/ and complete all the tasks for the "Challenge Project - Develop foreach and if-elseif-else Structures to Process Array Data in C#" module. This is required to earn the "Create and Run Simple C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/challenge-project-arrays-iteration-selection/ and complete all the tasks for the "Challenge Project - Develop foreach and if-elseif-else Structures to Process Array Data in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 91685d5c3c6..6dba95ceb0e 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 @@ -7,9 +7,9 @@ dashedName: create-readable-code-with-conventions-whitespace-and-comments-in-c-s # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-readable-code/ and complete all the tasks for the "Create Readable Code with Conventions, Whitespace, and Comments in C#" module. This is required to earn the "Create and Run Simple C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-readable-code/ and complete all the tasks for the "Create Readable Code with Conventions, Whitespace, and Comments in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 5de8874c1f0..d27cf0cd1e9 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 @@ -7,9 +7,9 @@ dashedName: guided-project-develop-foreach-and-if-elseif-else-structures-to-proc # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/guided-project-arrays-iteration-selection/ and complete all the tasks for the "Guided Project - Develop foreach and if-elseif-else Structures to Process Array Data in C#" module. This is required to earn the "Create and Run Simple C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/guided-project-arrays-iteration-selection/ and complete all the tasks for the "Guided Project - Develop foreach and if-elseif-else Structures to Process Array Data in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 f20ca84fd5d..2b823ab1657 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 @@ -7,9 +7,9 @@ dashedName: install-and-configure-visual-studio-code # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/install-configure-visual-studio-code/ and complete all the tasks for the "Install and Configure Visual Studio Code" module. This is required to earn the "Create and Run Simple C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/install-configure-visual-studio-code/ and complete all the tasks for the "Install and Configure Visual Studio Code" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 85053bab391..e6c229032ca 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 @@ -7,9 +7,9 @@ dashedName: store-and-iterate-through-sequences-of-data-using-arrays-and-the-for # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-arrays/ and complete all the tasks for the "Store and Iterate Through Sequences of Data Using Arrays and the foreach Statement in C#" module. This is required to earn the "Create and Run Simple C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-arrays/ and complete all the tasks for the "Store and Iterate Through Sequences of Data Using Arrays and the foreach Statement in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/trophy-create-and-run-simple-c-sharp-console-applications.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/trophy-create-and-run-simple-c-sharp-console-applications.md index ee9ba18969f..84642b155e8 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/trophy-create-and-run-simple-c-sharp-console-applications.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/trophy-create-and-run-simple-c-sharp-console-applications.md @@ -8,6 +8,6 @@ msTrophyId: learn.wwl.get-started-c-sharp-part-2.trophy # --description-- -Now that you've completed all of the "Create and Run Simple C# Console Applications" challenges, you should have earned a trophy for it on Microsoft's learning platform. +Now that you've completed all of the "Create and Run Simple C# Console Applications" challenges, you should have earned the trophy for it on the Microsoft Learn platform. If you don't see this trophy when viewing your achievements page, you have not completed all the tasks and your trophy cannot be verified. -Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is required to qualify to take the certification exam. +Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is **required** to qualify for the certification exam. 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 c6cfab73810..74a50b662e2 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 @@ -7,9 +7,9 @@ dashedName: challenge-project-create-a-mini-game # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/challenge-project-create-mini-game/ and complete all the tasks for the "Challenge Project - Create a Mini-Game" module. This is required to earn the "Create Methods in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/challenge-project-create-mini-game/ and complete all the tasks for the "Challenge Project - Create a Mini-Game" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 7d800dc95d4..6a3cec26d7c 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 @@ -7,9 +7,9 @@ dashedName: create-c-sharp-methods-that-return-values # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/create-c-sharp-methods-return-values/ and complete all the tasks for the "Create C# Methods that Return Values" module. This is required to earn the "Create Methods in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/create-c-sharp-methods-return-values/ and complete all the tasks for the "Create C# Methods that Return Values" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 95d2f91e09f..4a74949d76a 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 @@ -7,9 +7,9 @@ dashedName: create-c-sharp-methods-with-parameters # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/create-c-sharp-methods-parameters/ and complete all the tasks for the "Create C# Methods with Parameters" module. This is required to earn the "Create Methods in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/create-c-sharp-methods-parameters/ and complete all the tasks for the "Create C# Methods with Parameters" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 40da74c905b..67cf7ef2173 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 @@ -7,9 +7,9 @@ dashedName: guided-project-plan-a-petting-zoo-visit # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/guided-project-visit-petting-zoo/ and complete all the tasks for the "Guided Project - Plan a Petting Zoo Visit" module. This is required to earn the "Create Methods in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/guided-project-visit-petting-zoo/ and complete all the tasks for the "Guided Project - Plan a Petting Zoo Visit" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/trophy-create-methods-in-c-sharp-console-applications.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/trophy-create-methods-in-c-sharp-console-applications.md index cf407d0c9c8..850916a4cb2 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/trophy-create-methods-in-c-sharp-console-applications.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/trophy-create-methods-in-c-sharp-console-applications.md @@ -8,6 +8,6 @@ msTrophyId: learn.wwl.get-started-c-sharp-part-5.trophy # --description-- -Now that you've completed all of the "Create Methods in C# Console Applications" challenges, you should have earned a trophy for it on Microsoft's learning platform. +Now that you've completed all of the "Create Methods in C# Console Applications" challenges, you should have earned the trophy for it on the Microsoft Learn platform. If you don't see this trophy when viewing your achievements page, you have not completed all the tasks and your trophy cannot be verified. -Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is required to qualify to take the certification exam. +Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is **required** to qualify for the certification exam. 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 010f4a86839..0a1a690df22 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 @@ -7,9 +7,9 @@ dashedName: write-your-first-c-sharp-method # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/write-first-c-sharp-method/ and complete all the tasks for the "Write Your First C# Method" module. This is required to earn the "Create Methods in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/write-first-c-sharp-method/ and complete all the tasks for the "Write Your First C# Method" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 445fc80c9db..d2a01cef8e0 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 @@ -7,9 +7,9 @@ dashedName: challenge-project-debug-a-c-sharp-console-application-using-visual-s # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/challenge-project-debug-c-sharp-console-application/ and complete all the tasks for the "Challenge Project - Debug a C# Console Application Using Visual Studio Code" module. This is required to earn the "Debug C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/challenge-project-debug-c-sharp-console-application/ and complete all the tasks for the "Challenge Project - Debug a C# Console Application Using Visual Studio Code" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 ed8c9f4f586..ca5a39cb5ac 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 @@ -7,9 +7,9 @@ dashedName: create-and-throw-exceptions-in-c-sharp-console-applications # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/create-throw-exceptions-c-sharp/ and complete all the tasks for the "Create and Throw Exceptions in C# Console Applications" module. This is required earn to the "Debug C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/create-throw-exceptions-c-sharp/ and complete all the tasks for the "Create and Throw Exceptions in C# Console Applications" module. This is **required** earn to the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 7a1f7b6b76b..51518624ab9 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 @@ -7,9 +7,9 @@ dashedName: guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-appl # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/guided-project-debug-handle-exceptions-c-sharp-console-application/ and complete all the tasks for the "Guided Project - Debug and Handle Exceptions in a C# Console Application Using Visual Studio Code" module. This is required to earn the "Debug C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/guided-project-debug-handle-exceptions-c-sharp-console-application/ and complete all the tasks for the "Guided Project - Debug and Handle Exceptions in a C# Console Application Using Visual Studio Code" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 81be41e65a5..264cafc40f0 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 @@ -7,9 +7,9 @@ dashedName: implement-exception-handling-in-c-sharp-console-applications # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/implement-exception-handling-c-sharp/ and complete all the tasks for the "Implement Exception Handling in C# Console Applications" module. This is required to earn the "Debug C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/implement-exception-handling-c-sharp/ and complete all the tasks for the "Implement Exception Handling in C# Console Applications" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 09fe87de22e..9690146dbdd 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 @@ -7,9 +7,9 @@ dashedName: implement-the-visual-studio-code-debugging-tools-for-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/implement-visual-studio-code-debugging-tools/ and complete all the tasks for the "Implement the Visual Studio Code Debugging Tools for C#" module. This is required to earn the "Debug C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/implement-visual-studio-code-debugging-tools/ and complete all the tasks for the "Implement the Visual Studio Code Debugging Tools for C#" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 af5cea3af54..5082edd0fba 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 @@ -7,9 +7,9 @@ dashedName: review-the-principles-of-code-debugging-and-exception-handling # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/review-principles-code-debugging-exception-handling-c-sharp/ and complete all the tasks for the "Review the Principles of Code Debugging and Exception Handling" module. This is required to earn the "Debug C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/review-principles-code-debugging-exception-handling-c-sharp/ and complete all the tasks for the "Review the Principles of Code Debugging and Exception Handling" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/trophy-debug-c-sharp-console-applications.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/trophy-debug-c-sharp-console-applications.md index e44e07a5981..261ddfe5c21 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/trophy-debug-c-sharp-console-applications.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/trophy-debug-c-sharp-console-applications.md @@ -8,6 +8,6 @@ msTrophyId: learn.wwl.get-started-c-sharp-part-6.trophy # --description-- -Now that you've completed all of the "Debug C# Console Applications" challenges, you should have earned a trophy for it on Microsoft's learning platform. +Now that you've completed all of the "Debug C# Console Applications" challenges, you should have earned the trophy for it on the Microsoft Learn platform. If you don't see this trophy when viewing your achievements page, you have not completed all the tasks and your trophy cannot be verified. -Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is required to qualify to take the certification exam. +Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is **required** to qualify for the certification exam. 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 5535a7735d9..ae6090709b9 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 @@ -7,9 +7,9 @@ dashedName: challenge-project-work-with-variable-data-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/challenge-project-work-variable-data-c-sharp/ and complete all the tasks for the "Challenge Project - Work with Variable Data in C#" module. This is required to earn the "Work with Variable Data in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/challenge-project-work-variable-data-c-sharp/ and complete all the tasks for the "Challenge Project - Work with Variable Data in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 391aafe7934..9a352f99813 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 @@ -7,9 +7,9 @@ dashedName: choose-the-correct-data-type-in-your-c-sharp-code # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-choose-data-type/ and complete all the tasks for the "Choose the Correct Data Type in Your C# Code" module. This is required to earn the "Work with Variable Data in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-choose-data-type/ and complete all the tasks for the "Choose the Correct Data Type in Your C# Code" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 5d404268eba..40188ab92c1 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 @@ -7,9 +7,9 @@ dashedName: convert-data-types-using-casting-and-conversion-techniques-in-c-shar # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-convert-cast/ and complete all the tasks for the "Convert Data Types Using Casting and Conversion Techniques in C#" module. This is required to earn the "Work with Variable Data in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-convert-cast/ and complete all the tasks for the "Convert Data Types Using Casting and Conversion Techniques in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 98746a03b83..727c09bd909 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 @@ -7,9 +7,9 @@ dashedName: format-alphanumeric-data-for-presentation-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-format-strings/ and complete all the tasks for the "Format Alphanumeric Data for Presentation in C#" module. This is required to earn the "Work with Variable Data in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-format-strings/ and complete all the tasks for the "Format Alphanumeric Data for Presentation in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 bd1ad787ef1..7e2fccfbd59 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 @@ -7,9 +7,9 @@ dashedName: guided-project-work-with-variable-data-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/guided-project-work-variable-data-c-sharp/ and complete all the tasks for the "Guided Project - Work with Variable Data in C#" module. This is required to earn the "Work with Variable Data in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/guided-project-work-variable-data-c-sharp/ and complete all the tasks for the "Guided Project - Work with Variable Data in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 1707c7bc46b..0c355ebc15d 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 @@ -7,9 +7,9 @@ dashedName: modify-the-content-of-string-using-built-in-string-data-type-methods # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-modify-content/ and complete all the tasks for the "Modify the Content of Strings Using Built-In String Data Type Methods in C#" module. This is required to earn the "Work with Variable Data in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-modify-content/ and complete all the tasks for the "Modify the Content of Strings Using Built-In String Data Type Methods in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 89eb890f477..9e5f8277216 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 @@ -7,9 +7,9 @@ dashedName: perform-operations-on-arrays-using-helpers-methods-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-arrays-operations/ and complete all the tasks for the "Perform Operations on Arrays Using Helper Methods in C#" module. This is required to earn the "Work with Variable Data in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-arrays-operations/ and complete all the tasks for the "Perform Operations on Arrays Using Helper Methods in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/trophy-work-with-variable-data-in-c-sharp-console-applications.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/trophy-work-with-variable-data-in-c-sharp-console-applications.md index c41d7abac51..59f6dfd85c8 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/trophy-work-with-variable-data-in-c-sharp-console-applications.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/trophy-work-with-variable-data-in-c-sharp-console-applications.md @@ -8,6 +8,6 @@ msTrophyId: learn.wwl.get-started-c-sharp-part-4.trophy # --description-- -Now that you've completed all of the "Work with Variable Data in C# Console Applications" challenges, you should have earned a trophy for it on Microsoft's learning platform. +Now that you've completed all of the "Work with Variable Data in C# Console Applications" challenges, you should have earned the trophy for it on the Microsoft Learn platform. If you don't see this trophy when viewing your achievements page, you have not completed all the tasks and your trophy cannot be verified. -Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is required to qualify to take the certification exam. +Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is **required** to qualify for the certification exam. 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 d7980f1b170..2fa4818f4d3 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 @@ -7,9 +7,9 @@ dashedName: guided-project-calculate-and-print-student-grades # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/guided-project-calculate-print-student-grades/ and complete all the tasks for the "Guided Project - Calculate and Print Student Grades" module. This is required to earn the "Write Your First Code Using C#" trophy. +1. Go to https://learn.microsoft.com/training/modules/guided-project-calculate-print-student-grades/ and complete all the tasks for the "Guided Project - Calculate and Print Student Grades" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 bc13b8ba9d4..a7e0bd988c2 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 @@ -7,16 +7,16 @@ dashedName: guided-project-calculate-final-gpa # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/guided-project-calculate-final-gpa/ and complete all the tasks for the "Guided Project - Calculate Final GPA" module. This is required to earn the "Write Your First Code Using C#" trophy. +1. Go to https://learn.microsoft.com/training/modules/guided-project-calculate-final-gpa/ and complete all the tasks for the "Guided Project - Calculate Final GPA" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- ## --text-- -Suppose `decimal gradePointAverage = 3.99872831;`. +Suppose `decimal gradePointAverage = 3.99872831m;`. What is the value of `(int) gradePointAverage`? 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 38c6578cb25..874e5cd5650 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 @@ -7,9 +7,9 @@ dashedName: perform-basic-operations-on-numbers-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-basic-operations/ and complete all the tasks for the "Perform Basic Operations on Numbers in C#" module. This is required to earn the "Write Your First Code Using C#" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-basic-operations/ and complete all the tasks for the "Perform Basic Operations on Numbers in C#" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 97952d51a26..f4d39f5bbca 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 @@ -7,9 +7,9 @@ dashedName: perform-basic-string-formatting-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-basic-formatting/ and complete all the tasks for the "Perform Basic String Formatting in C#" module. This is required to earn the "Write Your First Code Using C#" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-basic-formatting/ and complete all the tasks for the "Perform Basic String Formatting in C#" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 d90168d0b5c..c75f54c2d88 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 @@ -7,9 +7,9 @@ dashedName: store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-literals-variables/ and complete all the tasks for the "Store and Retrieve Data Using Literal and Variable Values in C#" module. This is required to earn the "Write Your First Code Using C#" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-literals-variables/ and complete all the tasks for the "Store and Retrieve Data Using Literal and Variable Values in C#" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/trophy-write-your-first-code-using-c-sharp.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/trophy-write-your-first-code-using-c-sharp.md index 477051a5def..c2cad526381 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/trophy-write-your-first-code-using-c-sharp.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/trophy-write-your-first-code-using-c-sharp.md @@ -8,6 +8,6 @@ msTrophyId: learn.wwl.get-started-c-sharp-part-1.trophy # --description-- -Now that you've completed all of the "Write Your First Code Using C#" challenges, you should have earned a trophy for it on Microsoft's learning platform. +Now that you've completed all of the "Write Your First Code Using C#" challenges, you should have earned the trophy for it on the Microsoft Learn platform. If you don't see this trophy when viewing your achievements page, you have not completed all the tasks and your trophy cannot be verified. -Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is required to qualify to take the certification exam. +Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is **required** to qualify for the certification exam. 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 510536eaab4..10007a7f68a 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 @@ -1,34 +1,34 @@ --- id: 647e239e8acb466c97ccbf05 -title: 'Write Your First C# Code' +title: '编写你的第一段 C# 代码' challengeType: 19 dashedName: write-your-first-c-sharp-code --- # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +这个挑战将有一部分在 Microsoft Learn 平台上完成。 请按照如下说明来完成挑战: -1. Go to https://learn.microsoft.com/training/modules/csharp-write-first/ and complete all the tasks for the "Write Your First C# Code" module. This is required to earn the "Write Your First Code Using C#" trophy. -1. When you are finished, come back and correctly answer the question below. +1. 跳转到 https://learn.microsoft.com/training/modules/csharp-write-first/,然后完成“编写第一个 C# 代码”模块的所有任务。 这是在 Microsoft Learn 上获得“使用 C# 编写第一个代码”的奖杯以及参加认证考试所**必需**的。 +1. 完成后,返回并正确回答下面的问题。 # --question-- ## --text-- -What is the difference between `Console.Write` and `Console.WriteLine`? +`Console.Write` 和 `Console.WriteLine`有什么区别? ## --answers-- -`Console.Write` prints the output on a new line. +`Console.Write` 在新一行上打印输出。 --- -`Console.WriteLine` prints the output on a new line. +`Console.WriteLine` 在新一行上打印输出。 --- -`Console.WriteLine` appends a new line after the output. +`Console.WriteLine` 在输出后插入一个新行。 ## --video-solution-- diff --git a/curriculum/challenges/espanol/02-javascript-algorithms-and-data-structures/basic-javascript/manipulate-arrays-with-push.md b/curriculum/challenges/espanol/02-javascript-algorithms-and-data-structures/basic-javascript/manipulate-arrays-with-push.md index 8f467fa6ffd..c0f36173fd8 100644 --- a/curriculum/challenges/espanol/02-javascript-algorithms-and-data-structures/basic-javascript/manipulate-arrays-with-push.md +++ b/curriculum/challenges/espanol/02-javascript-algorithms-and-data-structures/basic-javascript/manipulate-arrays-with-push.md @@ -9,21 +9,21 @@ dashedName: manipulate-arrays-with-push # --description-- -Una forma fácil de añadir datos al final de un arreglo es a través de la función `push()`. +An easy way to append data to the end of an array is via the `push()` method. -`.push()` toma uno o más parámetros y los "empuja" al final del arreglo. +The `push()` method takes one or more arguments and appends them to the end of the array, in the order in which they appear. It returns the new length of the array. Ejemplos: ```js const arr1 = [1, 2, 3]; -arr1.push(4); +arr1.push(4, 5); const arr2 = ["Stimpson", "J", "cat"]; arr2.push(["happy", "joy"]); ``` -`arr1` ahora tiene el valor `[1, 2, 3, 4]` y `arr2` tiene el valor `["Stimpson", "J", "cat", ["happy", "joy"]]`. +`arr1` now has the value `[1, 2, 3, 4, 5]` and `arr2` has the value `["Stimpson", "J", "cat", ["happy", "joy"]]`. # --instructions-- diff --git a/curriculum/challenges/espanol/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfa22d1b521be39a3de7be0.md b/curriculum/challenges/espanol/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfa22d1b521be39a3de7be0.md index 5afc6bdac1c..d51f09e39ff 100644 --- a/curriculum/challenges/espanol/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfa22d1b521be39a3de7be0.md +++ b/curriculum/challenges/espanol/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfa22d1b521be39a3de7be0.md @@ -7,9 +7,13 @@ dashedName: step-12 # --description-- -En el paso anterior has convertido las palabras `link to cat pictures` en un enlace colocándolas entre la apertura y el cierre de la etiqueta (`a`). Puedes hacer lo mismo con las palabras dentro de un elemento, como un elemento de `p`. +You can turn any text into a link, such as the text inside of a `p` element. -En el texto del elemento `p`, convierte las palabras `cat photos` en un enlace a `https://freecatphotoapp.com` añadiendo etiquetas anchor (`a`) de apertura y cierre alrededor de dichas palabras. +``` html +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. Then set the `href` attribute to `https://freecatphotoapp.com/` # --hints-- diff --git a/curriculum/challenges/espanol/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/6476f5c17f99146071ee884c.md b/curriculum/challenges/espanol/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/6476f5c17f99146071ee884c.md index 03ea4e8598b..71b68d01fe8 100644 --- a/curriculum/challenges/espanol/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/6476f5c17f99146071ee884c.md +++ b/curriculum/challenges/espanol/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/6476f5c17f99146071ee884c.md @@ -11,7 +11,7 @@ You could see that nothing happens. The `.cat-head` element did not move despite When you use the `relative` value, the element is still positioned according to the normal flow of the document, but the `top`, `left`, `bottom`, and `right` values become active. -Instead of `static`, give you `.cat-head` a position of `relative`, and leave both `top` and `left` properties as they are. +Instead of `static`, give your `.cat-head` a position of `relative`, and leave both `top` and `left` properties as they are. # --hints-- 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 f3da4b4fb3f..7c50ac42745 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 @@ -7,9 +7,9 @@ dashedName: add-looping-logic-to-your-code-using-the-do-while-and-while-statemen # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-do-while/ and complete all the tasks for the "Add Looping Logic to Your Code Using the do-while and while Statements in C#" module. This is required to earn the "Add Logic to C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-do-while/ and complete all the tasks for the "Add Looping Logic to Your Code Using the do-while and while Statements in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 f63f55493b2..f6641f0316f 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 @@ -7,9 +7,9 @@ dashedName: branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-switch-case/ and complete all the tasks for the "Branch the Flow of Code Using the switch-case Construct in C#" module. This is required to earn the "Add Logic to C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-switch-case/ and complete all the tasks for the "Branch the Flow of Code Using the switch-case Construct in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 9e0f17ab674..265d870150e 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 @@ -7,9 +7,9 @@ dashedName: challenge-project-develop-branching-and-looping-structures-in-c-shar # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/challenge-project-develop-branching-looping-structures-c-sharp/ and complete all the tasks for the "Challenge Project - Develop Branching and Looping Structures in C#" module. This is required to earn the "Add Logic to C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/challenge-project-develop-branching-looping-structures-c-sharp/ and complete all the tasks for the "Challenge Project - Develop Branching and Looping Structures in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 ea77a8f1bfc..daa95972023 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 @@ -7,9 +7,9 @@ dashedName: control-variable-scope-and-logic-using-code-blocks-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-code-blocks/ and complete all the tasks for the "Control Variable Scope and Logic Using Code Blocks in C#" module. This is required to earn the "Add Logic to C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-code-blocks/ and complete all the tasks for the "Control Variable Scope and Logic Using Code Blocks in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 81d114a0d00..1f1c72e0c8a 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 @@ -7,9 +7,9 @@ dashedName: evaluate-boolean-expressions-to-make-decisions-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-evaluate-boolean-expressions/ and complete all the tasks for the "Evaluate Boolean Expressions to Make Decisions in C#" module. This is required to earn the "Add Logic to C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-evaluate-boolean-expressions/ and complete all the tasks for the "Evaluate Boolean Expressions to Make Decisions in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 868a9ba5696..7cfc12d242d 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 @@ -7,9 +7,9 @@ dashedName: guided-project-develop-conditional-branching-and-looping-structures- # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/guided-project-develop-conditional-branching-looping/ and complete all the tasks for the "Guided Project - Develop Conditional Branching and Looping Structures in C#" module. This is required to earn the "Add Logic to C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/guided-project-develop-conditional-branching-looping/ and complete all the tasks for the "Guided Project - Develop Conditional Branching and Looping Structures in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 ecbc1c26392..fbc5beccffd 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 @@ -7,9 +7,9 @@ dashedName: iterate-through-a-code-block-using-the-for-statement-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-for/ and complete all the tasks for the "Iterate Through a Code Block Using the for Statement in C#" module. This is required to earn the "Add Logic to C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-for/ and complete all the tasks for the "Iterate Through a Code Block Using the for Statement in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/trophy-add-logic-to-c-sharp-console-applications.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/trophy-add-logic-to-c-sharp-console-applications.md index 92b3c911a26..31e5799bf8a 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/trophy-add-logic-to-c-sharp-console-applications.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/trophy-add-logic-to-c-sharp-console-applications.md @@ -8,6 +8,6 @@ msTrophyId: learn.wwl.get-started-c-sharp-part-3.trophy # --description-- -Now that you've completed all of the "Add Logic to C# Console Applications" challenges, you should have earned a trophy for it on Microsoft's learning platform. +Now that you've completed all of the "Add Logic to C# Console Applications" challenges, you should have earned the trophy for it on the Microsoft Learn platform. If you don't see this trophy when viewing your achievements page, you have not completed all the tasks and your trophy cannot be verified. -Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is required to qualify to take the certification exam. +Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is **required** to qualify for the certification exam. 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 58d431728ba..1a0f1c91668 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 @@ -7,9 +7,9 @@ dashedName: add-decision-logic-to-your-code-using-if-else-and-else-if-statements # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-if-elseif-else/ and complete all the tasks for the "Add Decision Logic to Your Code Using if, else, and else if statements in C#" module. This is required to earn the "Create and Run Simple C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-if-elseif-else/ and complete all the tasks for the "Add Decision Logic to Your Code Using if, else, and else if statements in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 863f4b0e8e4..3ba95b9e155 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 @@ -7,9 +7,9 @@ dashedName: call-methods-from-the-dot-net-class-library-using-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-call-methods/ and complete all the tasks for the "Call Methods From the .NET Class Library Using C#" module. This is required to earn the "Create and Run Simple C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-call-methods/ and complete all the tasks for the "Call Methods From the .NET Class Library Using C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 38286900541..2fa7a6ca39e 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 @@ -7,9 +7,9 @@ dashedName: challenge-project-develop-foreach-and-if-elseif-else-structures-to-p # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/challenge-project-arrays-iteration-selection/ and complete all the tasks for the "Challenge Project - Develop foreach and if-elseif-else Structures to Process Array Data in C#" module. This is required to earn the "Create and Run Simple C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/challenge-project-arrays-iteration-selection/ and complete all the tasks for the "Challenge Project - Develop foreach and if-elseif-else Structures to Process Array Data in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 91685d5c3c6..6dba95ceb0e 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 @@ -7,9 +7,9 @@ dashedName: create-readable-code-with-conventions-whitespace-and-comments-in-c-s # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-readable-code/ and complete all the tasks for the "Create Readable Code with Conventions, Whitespace, and Comments in C#" module. This is required to earn the "Create and Run Simple C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-readable-code/ and complete all the tasks for the "Create Readable Code with Conventions, Whitespace, and Comments in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 5de8874c1f0..d27cf0cd1e9 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 @@ -7,9 +7,9 @@ dashedName: guided-project-develop-foreach-and-if-elseif-else-structures-to-proc # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/guided-project-arrays-iteration-selection/ and complete all the tasks for the "Guided Project - Develop foreach and if-elseif-else Structures to Process Array Data in C#" module. This is required to earn the "Create and Run Simple C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/guided-project-arrays-iteration-selection/ and complete all the tasks for the "Guided Project - Develop foreach and if-elseif-else Structures to Process Array Data in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 f20ca84fd5d..2b823ab1657 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 @@ -7,9 +7,9 @@ dashedName: install-and-configure-visual-studio-code # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/install-configure-visual-studio-code/ and complete all the tasks for the "Install and Configure Visual Studio Code" module. This is required to earn the "Create and Run Simple C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/install-configure-visual-studio-code/ and complete all the tasks for the "Install and Configure Visual Studio Code" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 85053bab391..e6c229032ca 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 @@ -7,9 +7,9 @@ dashedName: store-and-iterate-through-sequences-of-data-using-arrays-and-the-for # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-arrays/ and complete all the tasks for the "Store and Iterate Through Sequences of Data Using Arrays and the foreach Statement in C#" module. This is required to earn the "Create and Run Simple C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-arrays/ and complete all the tasks for the "Store and Iterate Through Sequences of Data Using Arrays and the foreach Statement in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/trophy-create-and-run-simple-c-sharp-console-applications.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/trophy-create-and-run-simple-c-sharp-console-applications.md index ee9ba18969f..84642b155e8 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/trophy-create-and-run-simple-c-sharp-console-applications.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/trophy-create-and-run-simple-c-sharp-console-applications.md @@ -8,6 +8,6 @@ msTrophyId: learn.wwl.get-started-c-sharp-part-2.trophy # --description-- -Now that you've completed all of the "Create and Run Simple C# Console Applications" challenges, you should have earned a trophy for it on Microsoft's learning platform. +Now that you've completed all of the "Create and Run Simple C# Console Applications" challenges, you should have earned the trophy for it on the Microsoft Learn platform. If you don't see this trophy when viewing your achievements page, you have not completed all the tasks and your trophy cannot be verified. -Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is required to qualify to take the certification exam. +Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is **required** to qualify for the certification exam. 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 c6cfab73810..74a50b662e2 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 @@ -7,9 +7,9 @@ dashedName: challenge-project-create-a-mini-game # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/challenge-project-create-mini-game/ and complete all the tasks for the "Challenge Project - Create a Mini-Game" module. This is required to earn the "Create Methods in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/challenge-project-create-mini-game/ and complete all the tasks for the "Challenge Project - Create a Mini-Game" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 7d800dc95d4..6a3cec26d7c 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 @@ -7,9 +7,9 @@ dashedName: create-c-sharp-methods-that-return-values # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/create-c-sharp-methods-return-values/ and complete all the tasks for the "Create C# Methods that Return Values" module. This is required to earn the "Create Methods in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/create-c-sharp-methods-return-values/ and complete all the tasks for the "Create C# Methods that Return Values" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 95d2f91e09f..4a74949d76a 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 @@ -7,9 +7,9 @@ dashedName: create-c-sharp-methods-with-parameters # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/create-c-sharp-methods-parameters/ and complete all the tasks for the "Create C# Methods with Parameters" module. This is required to earn the "Create Methods in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/create-c-sharp-methods-parameters/ and complete all the tasks for the "Create C# Methods with Parameters" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 40da74c905b..67cf7ef2173 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 @@ -7,9 +7,9 @@ dashedName: guided-project-plan-a-petting-zoo-visit # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/guided-project-visit-petting-zoo/ and complete all the tasks for the "Guided Project - Plan a Petting Zoo Visit" module. This is required to earn the "Create Methods in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/guided-project-visit-petting-zoo/ and complete all the tasks for the "Guided Project - Plan a Petting Zoo Visit" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/trophy-create-methods-in-c-sharp-console-applications.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/trophy-create-methods-in-c-sharp-console-applications.md index cf407d0c9c8..850916a4cb2 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/trophy-create-methods-in-c-sharp-console-applications.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/trophy-create-methods-in-c-sharp-console-applications.md @@ -8,6 +8,6 @@ msTrophyId: learn.wwl.get-started-c-sharp-part-5.trophy # --description-- -Now that you've completed all of the "Create Methods in C# Console Applications" challenges, you should have earned a trophy for it on Microsoft's learning platform. +Now that you've completed all of the "Create Methods in C# Console Applications" challenges, you should have earned the trophy for it on the Microsoft Learn platform. If you don't see this trophy when viewing your achievements page, you have not completed all the tasks and your trophy cannot be verified. -Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is required to qualify to take the certification exam. +Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is **required** to qualify for the certification exam. 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 010f4a86839..0a1a690df22 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 @@ -7,9 +7,9 @@ dashedName: write-your-first-c-sharp-method # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/write-first-c-sharp-method/ and complete all the tasks for the "Write Your First C# Method" module. This is required to earn the "Create Methods in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/write-first-c-sharp-method/ and complete all the tasks for the "Write Your First C# Method" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 445fc80c9db..d2a01cef8e0 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 @@ -7,9 +7,9 @@ dashedName: challenge-project-debug-a-c-sharp-console-application-using-visual-s # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/challenge-project-debug-c-sharp-console-application/ and complete all the tasks for the "Challenge Project - Debug a C# Console Application Using Visual Studio Code" module. This is required to earn the "Debug C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/challenge-project-debug-c-sharp-console-application/ and complete all the tasks for the "Challenge Project - Debug a C# Console Application Using Visual Studio Code" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 ed8c9f4f586..ca5a39cb5ac 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 @@ -7,9 +7,9 @@ dashedName: create-and-throw-exceptions-in-c-sharp-console-applications # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/create-throw-exceptions-c-sharp/ and complete all the tasks for the "Create and Throw Exceptions in C# Console Applications" module. This is required earn to the "Debug C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/create-throw-exceptions-c-sharp/ and complete all the tasks for the "Create and Throw Exceptions in C# Console Applications" module. This is **required** earn to the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 7a1f7b6b76b..51518624ab9 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 @@ -7,9 +7,9 @@ dashedName: guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-appl # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/guided-project-debug-handle-exceptions-c-sharp-console-application/ and complete all the tasks for the "Guided Project - Debug and Handle Exceptions in a C# Console Application Using Visual Studio Code" module. This is required to earn the "Debug C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/guided-project-debug-handle-exceptions-c-sharp-console-application/ and complete all the tasks for the "Guided Project - Debug and Handle Exceptions in a C# Console Application Using Visual Studio Code" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 81be41e65a5..264cafc40f0 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 @@ -7,9 +7,9 @@ dashedName: implement-exception-handling-in-c-sharp-console-applications # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/implement-exception-handling-c-sharp/ and complete all the tasks for the "Implement Exception Handling in C# Console Applications" module. This is required to earn the "Debug C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/implement-exception-handling-c-sharp/ and complete all the tasks for the "Implement Exception Handling in C# Console Applications" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 09fe87de22e..9690146dbdd 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 @@ -7,9 +7,9 @@ dashedName: implement-the-visual-studio-code-debugging-tools-for-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/implement-visual-studio-code-debugging-tools/ and complete all the tasks for the "Implement the Visual Studio Code Debugging Tools for C#" module. This is required to earn the "Debug C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/implement-visual-studio-code-debugging-tools/ and complete all the tasks for the "Implement the Visual Studio Code Debugging Tools for C#" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 af5cea3af54..5082edd0fba 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 @@ -7,9 +7,9 @@ dashedName: review-the-principles-of-code-debugging-and-exception-handling # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/review-principles-code-debugging-exception-handling-c-sharp/ and complete all the tasks for the "Review the Principles of Code Debugging and Exception Handling" module. This is required to earn the "Debug C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/review-principles-code-debugging-exception-handling-c-sharp/ and complete all the tasks for the "Review the Principles of Code Debugging and Exception Handling" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/trophy-debug-c-sharp-console-applications.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/trophy-debug-c-sharp-console-applications.md index e44e07a5981..261ddfe5c21 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/trophy-debug-c-sharp-console-applications.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/trophy-debug-c-sharp-console-applications.md @@ -8,6 +8,6 @@ msTrophyId: learn.wwl.get-started-c-sharp-part-6.trophy # --description-- -Now that you've completed all of the "Debug C# Console Applications" challenges, you should have earned a trophy for it on Microsoft's learning platform. +Now that you've completed all of the "Debug C# Console Applications" challenges, you should have earned the trophy for it on the Microsoft Learn platform. If you don't see this trophy when viewing your achievements page, you have not completed all the tasks and your trophy cannot be verified. -Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is required to qualify to take the certification exam. +Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is **required** to qualify for the certification exam. 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 5535a7735d9..ae6090709b9 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 @@ -7,9 +7,9 @@ dashedName: challenge-project-work-with-variable-data-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/challenge-project-work-variable-data-c-sharp/ and complete all the tasks for the "Challenge Project - Work with Variable Data in C#" module. This is required to earn the "Work with Variable Data in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/challenge-project-work-variable-data-c-sharp/ and complete all the tasks for the "Challenge Project - Work with Variable Data in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 391aafe7934..9a352f99813 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 @@ -7,9 +7,9 @@ dashedName: choose-the-correct-data-type-in-your-c-sharp-code # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-choose-data-type/ and complete all the tasks for the "Choose the Correct Data Type in Your C# Code" module. This is required to earn the "Work with Variable Data in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-choose-data-type/ and complete all the tasks for the "Choose the Correct Data Type in Your C# Code" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 5d404268eba..40188ab92c1 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 @@ -7,9 +7,9 @@ dashedName: convert-data-types-using-casting-and-conversion-techniques-in-c-shar # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-convert-cast/ and complete all the tasks for the "Convert Data Types Using Casting and Conversion Techniques in C#" module. This is required to earn the "Work with Variable Data in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-convert-cast/ and complete all the tasks for the "Convert Data Types Using Casting and Conversion Techniques in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 98746a03b83..727c09bd909 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 @@ -7,9 +7,9 @@ dashedName: format-alphanumeric-data-for-presentation-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-format-strings/ and complete all the tasks for the "Format Alphanumeric Data for Presentation in C#" module. This is required to earn the "Work with Variable Data in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-format-strings/ and complete all the tasks for the "Format Alphanumeric Data for Presentation in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 bd1ad787ef1..7e2fccfbd59 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 @@ -7,9 +7,9 @@ dashedName: guided-project-work-with-variable-data-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/guided-project-work-variable-data-c-sharp/ and complete all the tasks for the "Guided Project - Work with Variable Data in C#" module. This is required to earn the "Work with Variable Data in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/guided-project-work-variable-data-c-sharp/ and complete all the tasks for the "Guided Project - Work with Variable Data in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 1707c7bc46b..0c355ebc15d 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 @@ -7,9 +7,9 @@ dashedName: modify-the-content-of-string-using-built-in-string-data-type-methods # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-modify-content/ and complete all the tasks for the "Modify the Content of Strings Using Built-In String Data Type Methods in C#" module. This is required to earn the "Work with Variable Data in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-modify-content/ and complete all the tasks for the "Modify the Content of Strings Using Built-In String Data Type Methods in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 89eb890f477..9e5f8277216 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 @@ -7,9 +7,9 @@ dashedName: perform-operations-on-arrays-using-helpers-methods-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-arrays-operations/ and complete all the tasks for the "Perform Operations on Arrays Using Helper Methods in C#" module. This is required to earn the "Work with Variable Data in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-arrays-operations/ and complete all the tasks for the "Perform Operations on Arrays Using Helper Methods in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/trophy-work-with-variable-data-in-c-sharp-console-applications.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/trophy-work-with-variable-data-in-c-sharp-console-applications.md index c41d7abac51..59f6dfd85c8 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/trophy-work-with-variable-data-in-c-sharp-console-applications.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/trophy-work-with-variable-data-in-c-sharp-console-applications.md @@ -8,6 +8,6 @@ msTrophyId: learn.wwl.get-started-c-sharp-part-4.trophy # --description-- -Now that you've completed all of the "Work with Variable Data in C# Console Applications" challenges, you should have earned a trophy for it on Microsoft's learning platform. +Now that you've completed all of the "Work with Variable Data in C# Console Applications" challenges, you should have earned the trophy for it on the Microsoft Learn platform. If you don't see this trophy when viewing your achievements page, you have not completed all the tasks and your trophy cannot be verified. -Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is required to qualify to take the certification exam. +Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is **required** to qualify for the certification exam. 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 d7980f1b170..2fa4818f4d3 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 @@ -7,9 +7,9 @@ dashedName: guided-project-calculate-and-print-student-grades # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/guided-project-calculate-print-student-grades/ and complete all the tasks for the "Guided Project - Calculate and Print Student Grades" module. This is required to earn the "Write Your First Code Using C#" trophy. +1. Go to https://learn.microsoft.com/training/modules/guided-project-calculate-print-student-grades/ and complete all the tasks for the "Guided Project - Calculate and Print Student Grades" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 bc13b8ba9d4..a7e0bd988c2 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 @@ -7,16 +7,16 @@ dashedName: guided-project-calculate-final-gpa # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/guided-project-calculate-final-gpa/ and complete all the tasks for the "Guided Project - Calculate Final GPA" module. This is required to earn the "Write Your First Code Using C#" trophy. +1. Go to https://learn.microsoft.com/training/modules/guided-project-calculate-final-gpa/ and complete all the tasks for the "Guided Project - Calculate Final GPA" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- ## --text-- -Suppose `decimal gradePointAverage = 3.99872831;`. +Suppose `decimal gradePointAverage = 3.99872831m;`. What is the value of `(int) gradePointAverage`? 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 38c6578cb25..874e5cd5650 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 @@ -7,9 +7,9 @@ dashedName: perform-basic-operations-on-numbers-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-basic-operations/ and complete all the tasks for the "Perform Basic Operations on Numbers in C#" module. This is required to earn the "Write Your First Code Using C#" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-basic-operations/ and complete all the tasks for the "Perform Basic Operations on Numbers in C#" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 97952d51a26..f4d39f5bbca 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 @@ -7,9 +7,9 @@ dashedName: perform-basic-string-formatting-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-basic-formatting/ and complete all the tasks for the "Perform Basic String Formatting in C#" module. This is required to earn the "Write Your First Code Using C#" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-basic-formatting/ and complete all the tasks for the "Perform Basic String Formatting in C#" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- 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 d90168d0b5c..c75f54c2d88 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 @@ -7,9 +7,9 @@ dashedName: store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-literals-variables/ and complete all the tasks for the "Store and Retrieve Data Using Literal and Variable Values in C#" module. This is required to earn the "Write Your First Code Using C#" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-literals-variables/ and complete all the tasks for the "Store and Retrieve Data Using Literal and Variable Values in C#" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/trophy-write-your-first-code-using-c-sharp.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/trophy-write-your-first-code-using-c-sharp.md index 477051a5def..c2cad526381 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/trophy-write-your-first-code-using-c-sharp.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/trophy-write-your-first-code-using-c-sharp.md @@ -8,6 +8,6 @@ msTrophyId: learn.wwl.get-started-c-sharp-part-1.trophy # --description-- -Now that you've completed all of the "Write Your First Code Using C#" challenges, you should have earned a trophy for it on Microsoft's learning platform. +Now that you've completed all of the "Write Your First Code Using C#" challenges, you should have earned the trophy for it on the Microsoft Learn platform. If you don't see this trophy when viewing your achievements page, you have not completed all the tasks and your trophy cannot be verified. -Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is required to qualify to take the certification exam. +Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is **required** to qualify for the certification exam. 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 510536eaab4..1295cf64070 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 @@ -7,9 +7,9 @@ dashedName: write-your-first-c-sharp-code # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-write-first/ and complete all the tasks for the "Write Your First C# Code" module. This is required to earn the "Write Your First Code Using C#" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-write-first/ and complete all the tasks in the "Write Your First C# Code" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/german/02-javascript-algorithms-and-data-structures/basic-javascript/manipulate-arrays-with-push.md b/curriculum/challenges/german/02-javascript-algorithms-and-data-structures/basic-javascript/manipulate-arrays-with-push.md index 2825505714a..0aa28d9a7b1 100644 --- a/curriculum/challenges/german/02-javascript-algorithms-and-data-structures/basic-javascript/manipulate-arrays-with-push.md +++ b/curriculum/challenges/german/02-javascript-algorithms-and-data-structures/basic-javascript/manipulate-arrays-with-push.md @@ -9,21 +9,21 @@ dashedName: manipulate-arrays-with-push # --description-- -Eine einfache Möglichkeit, Daten an das Ende eines Arrays anzuhängen, ist die `push()` Funktion. +An easy way to append data to the end of an array is via the `push()` method. -`.push()` nimmt einen oder mehrere Parameter und "schiebt" sie an das Ende des Arrays. +The `push()` method takes one or more arguments and appends them to the end of the array, in the order in which they appear. It returns the new length of the array. Beispiele: ```js const arr1 = [1, 2, 3]; -arr1.push(4); +arr1.push(4, 5); const arr2 = ["Stimpson", "J", "cat"]; arr2.push(["happy", "joy"]); ``` -`arr1` hat jetzt den Wert `[1, 2, 3, 4]` und `arr2` hat den Wert `["Stimpson", "J", "cat", ["happy", "joy"]]`. +`arr1` now has the value `[1, 2, 3, 4, 5]` and `arr2` has the value `["Stimpson", "J", "cat", ["happy", "joy"]]`. # --instructions-- 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 b2ef00d98d0..5d82c539398 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 @@ -7,9 +7,13 @@ dashedName: step-12 # --description-- -Im vorherigen Schritt hast du die Wörter `link to cat pictures` in einen Link verwandelt, indem du die Wörter zwischen einem öffnenden und schließenden (`a`)-Ankertag platziert hast. Dasselbe gilt für Wörter innerhalb eines Elements, z. B. eines `p`-Elements. +You can turn any text into a link, such as the text inside of a `p` element. -Verwandle im Text deines `p`-Elements die Wörter `cat photos` in einen Link zu `https://freecatphotoapp.com`, indem du öffnende und schließende (`a`)-Ankertags um diese Wörter hinzufügst. +``` html +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. Then set the `href` attribute to `https://freecatphotoapp.com/` # --hints-- diff --git a/curriculum/challenges/german/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/6476f5c17f99146071ee884c.md b/curriculum/challenges/german/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/6476f5c17f99146071ee884c.md index 03ea4e8598b..71b68d01fe8 100644 --- a/curriculum/challenges/german/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/6476f5c17f99146071ee884c.md +++ b/curriculum/challenges/german/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/6476f5c17f99146071ee884c.md @@ -11,7 +11,7 @@ You could see that nothing happens. The `.cat-head` element did not move despite When you use the `relative` value, the element is still positioned according to the normal flow of the document, but the `top`, `left`, `bottom`, and `right` values become active. -Instead of `static`, give you `.cat-head` a position of `relative`, and leave both `top` and `left` properties as they are. +Instead of `static`, give your `.cat-head` a position of `relative`, and leave both `top` and `left` properties as they are. # --hints-- diff --git a/curriculum/challenges/german/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/german/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 f3da4b4fb3f..7c50ac42745 100644 --- a/curriculum/challenges/german/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/german/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 @@ -7,9 +7,9 @@ dashedName: add-looping-logic-to-your-code-using-the-do-while-and-while-statemen # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-do-while/ and complete all the tasks for the "Add Looping Logic to Your Code Using the do-while and while Statements in C#" module. This is required to earn the "Add Logic to C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-do-while/ and complete all the tasks for the "Add Looping Logic to Your Code Using the do-while and while Statements in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/german/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/german/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 f63f55493b2..f6641f0316f 100644 --- a/curriculum/challenges/german/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/german/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 @@ -7,9 +7,9 @@ dashedName: branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-switch-case/ and complete all the tasks for the "Branch the Flow of Code Using the switch-case Construct in C#" module. This is required to earn the "Add Logic to C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-switch-case/ and complete all the tasks for the "Branch the Flow of Code Using the switch-case Construct in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/german/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/german/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 9e0f17ab674..265d870150e 100644 --- a/curriculum/challenges/german/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/german/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md @@ -7,9 +7,9 @@ dashedName: challenge-project-develop-branching-and-looping-structures-in-c-shar # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/challenge-project-develop-branching-looping-structures-c-sharp/ and complete all the tasks for the "Challenge Project - Develop Branching and Looping Structures in C#" module. This is required to earn the "Add Logic to C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/challenge-project-develop-branching-looping-structures-c-sharp/ and complete all the tasks for the "Challenge Project - Develop Branching and Looping Structures in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/german/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/german/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 ea77a8f1bfc..daa95972023 100644 --- a/curriculum/challenges/german/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/german/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 @@ -7,9 +7,9 @@ dashedName: control-variable-scope-and-logic-using-code-blocks-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-code-blocks/ and complete all the tasks for the "Control Variable Scope and Logic Using Code Blocks in C#" module. This is required to earn the "Add Logic to C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-code-blocks/ and complete all the tasks for the "Control Variable Scope and Logic Using Code Blocks in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/german/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/german/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md index 81d114a0d00..1f1c72e0c8a 100644 --- a/curriculum/challenges/german/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/german/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md @@ -7,9 +7,9 @@ dashedName: evaluate-boolean-expressions-to-make-decisions-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-evaluate-boolean-expressions/ and complete all the tasks for the "Evaluate Boolean Expressions to Make Decisions in C#" module. This is required to earn the "Add Logic to C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-evaluate-boolean-expressions/ and complete all the tasks for the "Evaluate Boolean Expressions to Make Decisions in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/german/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/german/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 868a9ba5696..7cfc12d242d 100644 --- a/curriculum/challenges/german/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/german/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 @@ -7,9 +7,9 @@ dashedName: guided-project-develop-conditional-branching-and-looping-structures- # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/guided-project-develop-conditional-branching-looping/ and complete all the tasks for the "Guided Project - Develop Conditional Branching and Looping Structures in C#" module. This is required to earn the "Add Logic to C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/guided-project-develop-conditional-branching-looping/ and complete all the tasks for the "Guided Project - Develop Conditional Branching and Looping Structures in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/german/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/german/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 ecbc1c26392..fbc5beccffd 100644 --- a/curriculum/challenges/german/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/german/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 @@ -7,9 +7,9 @@ dashedName: iterate-through-a-code-block-using-the-for-statement-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-for/ and complete all the tasks for the "Iterate Through a Code Block Using the for Statement in C#" module. This is required to earn the "Add Logic to C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-for/ and complete all the tasks for the "Iterate Through a Code Block Using the for Statement in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/trophy-add-logic-to-c-sharp-console-applications.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/trophy-add-logic-to-c-sharp-console-applications.md index 92b3c911a26..31e5799bf8a 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/trophy-add-logic-to-c-sharp-console-applications.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/trophy-add-logic-to-c-sharp-console-applications.md @@ -8,6 +8,6 @@ msTrophyId: learn.wwl.get-started-c-sharp-part-3.trophy # --description-- -Now that you've completed all of the "Add Logic to C# Console Applications" challenges, you should have earned a trophy for it on Microsoft's learning platform. +Now that you've completed all of the "Add Logic to C# Console Applications" challenges, you should have earned the trophy for it on the Microsoft Learn platform. If you don't see this trophy when viewing your achievements page, you have not completed all the tasks and your trophy cannot be verified. -Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is required to qualify to take the certification exam. +Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is **required** to qualify for the certification exam. diff --git a/curriculum/challenges/german/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/german/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 58d431728ba..1a0f1c91668 100644 --- a/curriculum/challenges/german/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/german/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 @@ -7,9 +7,9 @@ dashedName: add-decision-logic-to-your-code-using-if-else-and-else-if-statements # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-if-elseif-else/ and complete all the tasks for the "Add Decision Logic to Your Code Using if, else, and else if statements in C#" module. This is required to earn the "Create and Run Simple C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-if-elseif-else/ and complete all the tasks for the "Add Decision Logic to Your Code Using if, else, and else if statements in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/german/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/german/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 863f4b0e8e4..3ba95b9e155 100644 --- a/curriculum/challenges/german/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/german/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 @@ -7,9 +7,9 @@ dashedName: call-methods-from-the-dot-net-class-library-using-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-call-methods/ and complete all the tasks for the "Call Methods From the .NET Class Library Using C#" module. This is required to earn the "Create and Run Simple C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-call-methods/ and complete all the tasks for the "Call Methods From the .NET Class Library Using C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/german/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/german/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 38286900541..2fa7a6ca39e 100644 --- a/curriculum/challenges/german/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/german/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 @@ -7,9 +7,9 @@ dashedName: challenge-project-develop-foreach-and-if-elseif-else-structures-to-p # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/challenge-project-arrays-iteration-selection/ and complete all the tasks for the "Challenge Project - Develop foreach and if-elseif-else Structures to Process Array Data in C#" module. This is required to earn the "Create and Run Simple C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/challenge-project-arrays-iteration-selection/ and complete all the tasks for the "Challenge Project - Develop foreach and if-elseif-else Structures to Process Array Data in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/german/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/german/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 91685d5c3c6..6dba95ceb0e 100644 --- a/curriculum/challenges/german/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/german/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 @@ -7,9 +7,9 @@ dashedName: create-readable-code-with-conventions-whitespace-and-comments-in-c-s # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-readable-code/ and complete all the tasks for the "Create Readable Code with Conventions, Whitespace, and Comments in C#" module. This is required to earn the "Create and Run Simple C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-readable-code/ and complete all the tasks for the "Create Readable Code with Conventions, Whitespace, and Comments in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/german/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/german/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 5de8874c1f0..d27cf0cd1e9 100644 --- a/curriculum/challenges/german/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/german/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 @@ -7,9 +7,9 @@ dashedName: guided-project-develop-foreach-and-if-elseif-else-structures-to-proc # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/guided-project-arrays-iteration-selection/ and complete all the tasks for the "Guided Project - Develop foreach and if-elseif-else Structures to Process Array Data in C#" module. This is required to earn the "Create and Run Simple C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/guided-project-arrays-iteration-selection/ and complete all the tasks for the "Guided Project - Develop foreach and if-elseif-else Structures to Process Array Data in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md index f20ca84fd5d..2b823ab1657 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md @@ -7,9 +7,9 @@ dashedName: install-and-configure-visual-studio-code # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/install-configure-visual-studio-code/ and complete all the tasks for the "Install and Configure Visual Studio Code" module. This is required to earn the "Create and Run Simple C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/install-configure-visual-studio-code/ and complete all the tasks for the "Install and Configure Visual Studio Code" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/german/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/german/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 85053bab391..e6c229032ca 100644 --- a/curriculum/challenges/german/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/german/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 @@ -7,9 +7,9 @@ dashedName: store-and-iterate-through-sequences-of-data-using-arrays-and-the-for # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-arrays/ and complete all the tasks for the "Store and Iterate Through Sequences of Data Using Arrays and the foreach Statement in C#" module. This is required to earn the "Create and Run Simple C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-arrays/ and complete all the tasks for the "Store and Iterate Through Sequences of Data Using Arrays and the foreach Statement in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/trophy-create-and-run-simple-c-sharp-console-applications.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/trophy-create-and-run-simple-c-sharp-console-applications.md index ee9ba18969f..84642b155e8 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/trophy-create-and-run-simple-c-sharp-console-applications.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/trophy-create-and-run-simple-c-sharp-console-applications.md @@ -8,6 +8,6 @@ msTrophyId: learn.wwl.get-started-c-sharp-part-2.trophy # --description-- -Now that you've completed all of the "Create and Run Simple C# Console Applications" challenges, you should have earned a trophy for it on Microsoft's learning platform. +Now that you've completed all of the "Create and Run Simple C# Console Applications" challenges, you should have earned the trophy for it on the Microsoft Learn platform. If you don't see this trophy when viewing your achievements page, you have not completed all the tasks and your trophy cannot be verified. -Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is required to qualify to take the certification exam. +Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is **required** to qualify for the certification exam. diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md index c6cfab73810..74a50b662e2 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md @@ -7,9 +7,9 @@ dashedName: challenge-project-create-a-mini-game # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/challenge-project-create-mini-game/ and complete all the tasks for the "Challenge Project - Create a Mini-Game" module. This is required to earn the "Create Methods in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/challenge-project-create-mini-game/ and complete all the tasks for the "Challenge Project - Create a Mini-Game" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md index 7d800dc95d4..6a3cec26d7c 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md @@ -7,9 +7,9 @@ dashedName: create-c-sharp-methods-that-return-values # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/create-c-sharp-methods-return-values/ and complete all the tasks for the "Create C# Methods that Return Values" module. This is required to earn the "Create Methods in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/create-c-sharp-methods-return-values/ and complete all the tasks for the "Create C# Methods that Return Values" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md index 95d2f91e09f..4a74949d76a 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md @@ -7,9 +7,9 @@ dashedName: create-c-sharp-methods-with-parameters # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/create-c-sharp-methods-parameters/ and complete all the tasks for the "Create C# Methods with Parameters" module. This is required to earn the "Create Methods in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/create-c-sharp-methods-parameters/ and complete all the tasks for the "Create C# Methods with Parameters" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md index 40da74c905b..67cf7ef2173 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md @@ -7,9 +7,9 @@ dashedName: guided-project-plan-a-petting-zoo-visit # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/guided-project-visit-petting-zoo/ and complete all the tasks for the "Guided Project - Plan a Petting Zoo Visit" module. This is required to earn the "Create Methods in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/guided-project-visit-petting-zoo/ and complete all the tasks for the "Guided Project - Plan a Petting Zoo Visit" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/trophy-create-methods-in-c-sharp-console-applications.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/trophy-create-methods-in-c-sharp-console-applications.md index cf407d0c9c8..850916a4cb2 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/trophy-create-methods-in-c-sharp-console-applications.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/trophy-create-methods-in-c-sharp-console-applications.md @@ -8,6 +8,6 @@ msTrophyId: learn.wwl.get-started-c-sharp-part-5.trophy # --description-- -Now that you've completed all of the "Create Methods in C# Console Applications" challenges, you should have earned a trophy for it on Microsoft's learning platform. +Now that you've completed all of the "Create Methods in C# Console Applications" challenges, you should have earned the trophy for it on the Microsoft Learn platform. If you don't see this trophy when viewing your achievements page, you have not completed all the tasks and your trophy cannot be verified. -Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is required to qualify to take the certification exam. +Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is **required** to qualify for the certification exam. diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md index 010f4a86839..0a1a690df22 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md @@ -7,9 +7,9 @@ dashedName: write-your-first-c-sharp-method # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/write-first-c-sharp-method/ and complete all the tasks for the "Write Your First C# Method" module. This is required to earn the "Create Methods in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/write-first-c-sharp-method/ and complete all the tasks for the "Write Your First C# Method" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/german/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/german/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 445fc80c9db..d2a01cef8e0 100644 --- a/curriculum/challenges/german/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/german/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md @@ -7,9 +7,9 @@ dashedName: challenge-project-debug-a-c-sharp-console-application-using-visual-s # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/challenge-project-debug-c-sharp-console-application/ and complete all the tasks for the "Challenge Project - Debug a C# Console Application Using Visual Studio Code" module. This is required to earn the "Debug C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/challenge-project-debug-c-sharp-console-application/ and complete all the tasks for the "Challenge Project - Debug a C# Console Application Using Visual Studio Code" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md index ed8c9f4f586..ca5a39cb5ac 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md @@ -7,9 +7,9 @@ dashedName: create-and-throw-exceptions-in-c-sharp-console-applications # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/create-throw-exceptions-c-sharp/ and complete all the tasks for the "Create and Throw Exceptions in C# Console Applications" module. This is required earn to the "Debug C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/create-throw-exceptions-c-sharp/ and complete all the tasks for the "Create and Throw Exceptions in C# Console Applications" module. This is **required** earn to the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/german/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/german/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 7a1f7b6b76b..51518624ab9 100644 --- a/curriculum/challenges/german/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/german/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 @@ -7,9 +7,9 @@ dashedName: guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-appl # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/guided-project-debug-handle-exceptions-c-sharp-console-application/ and complete all the tasks for the "Guided Project - Debug and Handle Exceptions in a C# Console Application Using Visual Studio Code" module. This is required to earn the "Debug C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/guided-project-debug-handle-exceptions-c-sharp-console-application/ and complete all the tasks for the "Guided Project - Debug and Handle Exceptions in a C# Console Application Using Visual Studio Code" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md index 81be41e65a5..264cafc40f0 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md @@ -7,9 +7,9 @@ dashedName: implement-exception-handling-in-c-sharp-console-applications # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/implement-exception-handling-c-sharp/ and complete all the tasks for the "Implement Exception Handling in C# Console Applications" module. This is required to earn the "Debug C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/implement-exception-handling-c-sharp/ and complete all the tasks for the "Implement Exception Handling in C# Console Applications" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/german/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/german/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md index 09fe87de22e..9690146dbdd 100644 --- a/curriculum/challenges/german/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/german/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md @@ -7,9 +7,9 @@ dashedName: implement-the-visual-studio-code-debugging-tools-for-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/implement-visual-studio-code-debugging-tools/ and complete all the tasks for the "Implement the Visual Studio Code Debugging Tools for C#" module. This is required to earn the "Debug C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/implement-visual-studio-code-debugging-tools/ and complete all the tasks for the "Implement the Visual Studio Code Debugging Tools for C#" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md index af5cea3af54..5082edd0fba 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md @@ -7,9 +7,9 @@ dashedName: review-the-principles-of-code-debugging-and-exception-handling # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/review-principles-code-debugging-exception-handling-c-sharp/ and complete all the tasks for the "Review the Principles of Code Debugging and Exception Handling" module. This is required to earn the "Debug C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/review-principles-code-debugging-exception-handling-c-sharp/ and complete all the tasks for the "Review the Principles of Code Debugging and Exception Handling" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/trophy-debug-c-sharp-console-applications.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/trophy-debug-c-sharp-console-applications.md index e44e07a5981..261ddfe5c21 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/trophy-debug-c-sharp-console-applications.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/trophy-debug-c-sharp-console-applications.md @@ -8,6 +8,6 @@ msTrophyId: learn.wwl.get-started-c-sharp-part-6.trophy # --description-- -Now that you've completed all of the "Debug C# Console Applications" challenges, you should have earned a trophy for it on Microsoft's learning platform. +Now that you've completed all of the "Debug C# Console Applications" challenges, you should have earned the trophy for it on the Microsoft Learn platform. If you don't see this trophy when viewing your achievements page, you have not completed all the tasks and your trophy cannot be verified. -Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is required to qualify to take the certification exam. +Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is **required** to qualify for the certification exam. diff --git a/curriculum/challenges/german/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/german/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 5535a7735d9..ae6090709b9 100644 --- a/curriculum/challenges/german/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/german/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 @@ -7,9 +7,9 @@ dashedName: challenge-project-work-with-variable-data-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/challenge-project-work-variable-data-c-sharp/ and complete all the tasks for the "Challenge Project - Work with Variable Data in C#" module. This is required to earn the "Work with Variable Data in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/challenge-project-work-variable-data-c-sharp/ and complete all the tasks for the "Challenge Project - Work with Variable Data in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/german/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/german/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 391aafe7934..9a352f99813 100644 --- a/curriculum/challenges/german/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/german/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 @@ -7,9 +7,9 @@ dashedName: choose-the-correct-data-type-in-your-c-sharp-code # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-choose-data-type/ and complete all the tasks for the "Choose the Correct Data Type in Your C# Code" module. This is required to earn the "Work with Variable Data in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-choose-data-type/ and complete all the tasks for the "Choose the Correct Data Type in Your C# Code" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/german/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/german/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 5d404268eba..40188ab92c1 100644 --- a/curriculum/challenges/german/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/german/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 @@ -7,9 +7,9 @@ dashedName: convert-data-types-using-casting-and-conversion-techniques-in-c-shar # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-convert-cast/ and complete all the tasks for the "Convert Data Types Using Casting and Conversion Techniques in C#" module. This is required to earn the "Work with Variable Data in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-convert-cast/ and complete all the tasks for the "Convert Data Types Using Casting and Conversion Techniques in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/german/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/german/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 98746a03b83..727c09bd909 100644 --- a/curriculum/challenges/german/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/german/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md @@ -7,9 +7,9 @@ dashedName: format-alphanumeric-data-for-presentation-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-format-strings/ and complete all the tasks for the "Format Alphanumeric Data for Presentation in C#" module. This is required to earn the "Work with Variable Data in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-format-strings/ and complete all the tasks for the "Format Alphanumeric Data for Presentation in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/german/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/german/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 bd1ad787ef1..7e2fccfbd59 100644 --- a/curriculum/challenges/german/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/german/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 @@ -7,9 +7,9 @@ dashedName: guided-project-work-with-variable-data-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/guided-project-work-variable-data-c-sharp/ and complete all the tasks for the "Guided Project - Work with Variable Data in C#" module. This is required to earn the "Work with Variable Data in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/guided-project-work-variable-data-c-sharp/ and complete all the tasks for the "Guided Project - Work with Variable Data in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/german/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/german/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 1707c7bc46b..0c355ebc15d 100644 --- a/curriculum/challenges/german/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/german/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 @@ -7,9 +7,9 @@ dashedName: modify-the-content-of-string-using-built-in-string-data-type-methods # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-modify-content/ and complete all the tasks for the "Modify the Content of Strings Using Built-In String Data Type Methods in C#" module. This is required to earn the "Work with Variable Data in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-modify-content/ and complete all the tasks for the "Modify the Content of Strings Using Built-In String Data Type Methods in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/german/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/german/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 89eb890f477..9e5f8277216 100644 --- a/curriculum/challenges/german/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/german/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 @@ -7,9 +7,9 @@ dashedName: perform-operations-on-arrays-using-helpers-methods-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-arrays-operations/ and complete all the tasks for the "Perform Operations on Arrays Using Helper Methods in C#" module. This is required to earn the "Work with Variable Data in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-arrays-operations/ and complete all the tasks for the "Perform Operations on Arrays Using Helper Methods in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/trophy-work-with-variable-data-in-c-sharp-console-applications.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/trophy-work-with-variable-data-in-c-sharp-console-applications.md index c41d7abac51..59f6dfd85c8 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/trophy-work-with-variable-data-in-c-sharp-console-applications.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/trophy-work-with-variable-data-in-c-sharp-console-applications.md @@ -8,6 +8,6 @@ msTrophyId: learn.wwl.get-started-c-sharp-part-4.trophy # --description-- -Now that you've completed all of the "Work with Variable Data in C# Console Applications" challenges, you should have earned a trophy for it on Microsoft's learning platform. +Now that you've completed all of the "Work with Variable Data in C# Console Applications" challenges, you should have earned the trophy for it on the Microsoft Learn platform. If you don't see this trophy when viewing your achievements page, you have not completed all the tasks and your trophy cannot be verified. -Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is required to qualify to take the certification exam. +Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is **required** to qualify for the certification exam. diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md index d7980f1b170..2fa4818f4d3 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md @@ -7,9 +7,9 @@ dashedName: guided-project-calculate-and-print-student-grades # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/guided-project-calculate-print-student-grades/ and complete all the tasks for the "Guided Project - Calculate and Print Student Grades" module. This is required to earn the "Write Your First Code Using C#" trophy. +1. Go to https://learn.microsoft.com/training/modules/guided-project-calculate-print-student-grades/ and complete all the tasks for the "Guided Project - Calculate and Print Student Grades" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md index bc13b8ba9d4..a7e0bd988c2 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md @@ -7,16 +7,16 @@ dashedName: guided-project-calculate-final-gpa # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/guided-project-calculate-final-gpa/ and complete all the tasks for the "Guided Project - Calculate Final GPA" module. This is required to earn the "Write Your First Code Using C#" trophy. +1. Go to https://learn.microsoft.com/training/modules/guided-project-calculate-final-gpa/ and complete all the tasks for the "Guided Project - Calculate Final GPA" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- ## --text-- -Suppose `decimal gradePointAverage = 3.99872831;`. +Suppose `decimal gradePointAverage = 3.99872831m;`. What is the value of `(int) gradePointAverage`? diff --git a/curriculum/challenges/german/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/german/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md index 38c6578cb25..874e5cd5650 100644 --- a/curriculum/challenges/german/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/german/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md @@ -7,9 +7,9 @@ dashedName: perform-basic-operations-on-numbers-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-basic-operations/ and complete all the tasks for the "Perform Basic Operations on Numbers in C#" module. This is required to earn the "Write Your First Code Using C#" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-basic-operations/ and complete all the tasks for the "Perform Basic Operations on Numbers in C#" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md index 97952d51a26..f4d39f5bbca 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md @@ -7,9 +7,9 @@ dashedName: perform-basic-string-formatting-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-basic-formatting/ and complete all the tasks for the "Perform Basic String Formatting in C#" module. This is required to earn the "Write Your First Code Using C#" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-basic-formatting/ and complete all the tasks for the "Perform Basic String Formatting in C#" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/german/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/german/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 d90168d0b5c..c75f54c2d88 100644 --- a/curriculum/challenges/german/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/german/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 @@ -7,9 +7,9 @@ dashedName: store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-literals-variables/ and complete all the tasks for the "Store and Retrieve Data Using Literal and Variable Values in C#" module. This is required to earn the "Write Your First Code Using C#" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-literals-variables/ and complete all the tasks for the "Store and Retrieve Data Using Literal and Variable Values in C#" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/trophy-write-your-first-code-using-c-sharp.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/trophy-write-your-first-code-using-c-sharp.md index 477051a5def..c2cad526381 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/trophy-write-your-first-code-using-c-sharp.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/trophy-write-your-first-code-using-c-sharp.md @@ -8,6 +8,6 @@ msTrophyId: learn.wwl.get-started-c-sharp-part-1.trophy # --description-- -Now that you've completed all of the "Write Your First Code Using C#" challenges, you should have earned a trophy for it on Microsoft's learning platform. +Now that you've completed all of the "Write Your First Code Using C#" challenges, you should have earned the trophy for it on the Microsoft Learn platform. If you don't see this trophy when viewing your achievements page, you have not completed all the tasks and your trophy cannot be verified. -Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is required to qualify to take the certification exam. +Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is **required** to qualify for the certification exam. diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md index 510536eaab4..1295cf64070 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md @@ -7,9 +7,9 @@ dashedName: write-your-first-c-sharp-code # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-write-first/ and complete all the tasks for the "Write Your First C# Code" module. This is required to earn the "Write Your First Code Using C#" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-write-first/ and complete all the tasks in the "Write Your First C# Code" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/italian/02-javascript-algorithms-and-data-structures/basic-javascript/manipulate-arrays-with-push.md b/curriculum/challenges/italian/02-javascript-algorithms-and-data-structures/basic-javascript/manipulate-arrays-with-push.md index 3d85add8854..c33bdfa14de 100644 --- a/curriculum/challenges/italian/02-javascript-algorithms-and-data-structures/basic-javascript/manipulate-arrays-with-push.md +++ b/curriculum/challenges/italian/02-javascript-algorithms-and-data-structures/basic-javascript/manipulate-arrays-with-push.md @@ -9,21 +9,21 @@ dashedName: manipulate-arrays-with-push # --description-- -Un modo semplice per aggiungere dei dati alla fine di un array è tramite la funzione `push()`. +An easy way to append data to the end of an array is via the `push()` method. -`.push()` prende uno o più parametri e li "spinge" alla fine dell'array. +The `push()` method takes one or more arguments and appends them to the end of the array, in the order in which they appear. It returns the new length of the array. Esempi: ```js const arr1 = [1, 2, 3]; -arr1.push(4); +arr1.push(4, 5); const arr2 = ["Stimpson", "J", "cat"]; arr2.push(["happy", "joy"]); ``` -`arr1` ora ha il valore `[1, 2, 3, 4]` e `arr2` ha il valore `["Stimpson", "J", "cat", ["happy", "joy"]]`. +`arr1` now has the value `[1, 2, 3, 4, 5]` and `arr2` has the value `["Stimpson", "J", "cat", ["happy", "joy"]]`. # --instructions-- diff --git a/curriculum/challenges/italian/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfa22d1b521be39a3de7be0.md b/curriculum/challenges/italian/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfa22d1b521be39a3de7be0.md index f2295e85364..13780c3c1e3 100644 --- a/curriculum/challenges/italian/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfa22d1b521be39a3de7be0.md +++ b/curriculum/challenges/italian/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfa22d1b521be39a3de7be0.md @@ -7,9 +7,13 @@ dashedName: step-12 # --description-- -Nello step precedente hai trasformato le parole `link to cat pictures` in un link inserendole tra un tag di apertura e un tag di chiusura di ancoraggio (`a`). Puoi fare lo stesso con le parole in un elemento, come un elemento `p`. +You can turn any text into a link, such as the text inside of a `p` element. -Nel testo dell'elemento `p`, trasforma le parole `cat photos` in un link a `https://freecatphotoapp.com` Aggiungendo dei tag di ancoraggio (`a`) di apertura e di chiusura attorno a queste parole. +``` html +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. Then set the `href` attribute to `https://freecatphotoapp.com/` # --hints-- diff --git a/curriculum/challenges/italian/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/6476f5c17f99146071ee884c.md b/curriculum/challenges/italian/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/6476f5c17f99146071ee884c.md index 03ea4e8598b..71b68d01fe8 100644 --- a/curriculum/challenges/italian/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/6476f5c17f99146071ee884c.md +++ b/curriculum/challenges/italian/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/6476f5c17f99146071ee884c.md @@ -11,7 +11,7 @@ You could see that nothing happens. The `.cat-head` element did not move despite When you use the `relative` value, the element is still positioned according to the normal flow of the document, but the `top`, `left`, `bottom`, and `right` values become active. -Instead of `static`, give you `.cat-head` a position of `relative`, and leave both `top` and `left` properties as they are. +Instead of `static`, give your `.cat-head` a position of `relative`, and leave both `top` and `left` properties as they are. # --hints-- diff --git a/curriculum/challenges/italian/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/italian/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 f3da4b4fb3f..7c50ac42745 100644 --- a/curriculum/challenges/italian/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/italian/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 @@ -7,9 +7,9 @@ dashedName: add-looping-logic-to-your-code-using-the-do-while-and-while-statemen # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-do-while/ and complete all the tasks for the "Add Looping Logic to Your Code Using the do-while and while Statements in C#" module. This is required to earn the "Add Logic to C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-do-while/ and complete all the tasks for the "Add Looping Logic to Your Code Using the do-while and while Statements in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/italian/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/italian/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 f63f55493b2..f6641f0316f 100644 --- a/curriculum/challenges/italian/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/italian/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 @@ -7,9 +7,9 @@ dashedName: branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-switch-case/ and complete all the tasks for the "Branch the Flow of Code Using the switch-case Construct in C#" module. This is required to earn the "Add Logic to C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-switch-case/ and complete all the tasks for the "Branch the Flow of Code Using the switch-case Construct in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/italian/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/italian/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 9e0f17ab674..265d870150e 100644 --- a/curriculum/challenges/italian/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/italian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md @@ -7,9 +7,9 @@ dashedName: challenge-project-develop-branching-and-looping-structures-in-c-shar # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/challenge-project-develop-branching-looping-structures-c-sharp/ and complete all the tasks for the "Challenge Project - Develop Branching and Looping Structures in C#" module. This is required to earn the "Add Logic to C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/challenge-project-develop-branching-looping-structures-c-sharp/ and complete all the tasks for the "Challenge Project - Develop Branching and Looping Structures in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/italian/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/italian/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 ea77a8f1bfc..daa95972023 100644 --- a/curriculum/challenges/italian/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/italian/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 @@ -7,9 +7,9 @@ dashedName: control-variable-scope-and-logic-using-code-blocks-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-code-blocks/ and complete all the tasks for the "Control Variable Scope and Logic Using Code Blocks in C#" module. This is required to earn the "Add Logic to C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-code-blocks/ and complete all the tasks for the "Control Variable Scope and Logic Using Code Blocks in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/italian/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/italian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md index 81d114a0d00..1f1c72e0c8a 100644 --- a/curriculum/challenges/italian/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/italian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md @@ -7,9 +7,9 @@ dashedName: evaluate-boolean-expressions-to-make-decisions-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-evaluate-boolean-expressions/ and complete all the tasks for the "Evaluate Boolean Expressions to Make Decisions in C#" module. This is required to earn the "Add Logic to C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-evaluate-boolean-expressions/ and complete all the tasks for the "Evaluate Boolean Expressions to Make Decisions in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/italian/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/italian/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 868a9ba5696..7cfc12d242d 100644 --- a/curriculum/challenges/italian/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/italian/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 @@ -7,9 +7,9 @@ dashedName: guided-project-develop-conditional-branching-and-looping-structures- # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/guided-project-develop-conditional-branching-looping/ and complete all the tasks for the "Guided Project - Develop Conditional Branching and Looping Structures in C#" module. This is required to earn the "Add Logic to C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/guided-project-develop-conditional-branching-looping/ and complete all the tasks for the "Guided Project - Develop Conditional Branching and Looping Structures in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/italian/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/italian/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 ecbc1c26392..fbc5beccffd 100644 --- a/curriculum/challenges/italian/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/italian/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 @@ -7,9 +7,9 @@ dashedName: iterate-through-a-code-block-using-the-for-statement-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-for/ and complete all the tasks for the "Iterate Through a Code Block Using the for Statement in C#" module. This is required to earn the "Add Logic to C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-for/ and complete all the tasks for the "Iterate Through a Code Block Using the for Statement in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/trophy-add-logic-to-c-sharp-console-applications.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/trophy-add-logic-to-c-sharp-console-applications.md index 92b3c911a26..31e5799bf8a 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/trophy-add-logic-to-c-sharp-console-applications.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/trophy-add-logic-to-c-sharp-console-applications.md @@ -8,6 +8,6 @@ msTrophyId: learn.wwl.get-started-c-sharp-part-3.trophy # --description-- -Now that you've completed all of the "Add Logic to C# Console Applications" challenges, you should have earned a trophy for it on Microsoft's learning platform. +Now that you've completed all of the "Add Logic to C# Console Applications" challenges, you should have earned the trophy for it on the Microsoft Learn platform. If you don't see this trophy when viewing your achievements page, you have not completed all the tasks and your trophy cannot be verified. -Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is required to qualify to take the certification exam. +Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is **required** to qualify for the certification exam. diff --git a/curriculum/challenges/italian/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/italian/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 58d431728ba..1a0f1c91668 100644 --- a/curriculum/challenges/italian/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/italian/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 @@ -7,9 +7,9 @@ dashedName: add-decision-logic-to-your-code-using-if-else-and-else-if-statements # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-if-elseif-else/ and complete all the tasks for the "Add Decision Logic to Your Code Using if, else, and else if statements in C#" module. This is required to earn the "Create and Run Simple C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-if-elseif-else/ and complete all the tasks for the "Add Decision Logic to Your Code Using if, else, and else if statements in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/italian/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/italian/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 863f4b0e8e4..3ba95b9e155 100644 --- a/curriculum/challenges/italian/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/italian/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 @@ -7,9 +7,9 @@ dashedName: call-methods-from-the-dot-net-class-library-using-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-call-methods/ and complete all the tasks for the "Call Methods From the .NET Class Library Using C#" module. This is required to earn the "Create and Run Simple C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-call-methods/ and complete all the tasks for the "Call Methods From the .NET Class Library Using C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/italian/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/italian/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 38286900541..2fa7a6ca39e 100644 --- a/curriculum/challenges/italian/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/italian/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 @@ -7,9 +7,9 @@ dashedName: challenge-project-develop-foreach-and-if-elseif-else-structures-to-p # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/challenge-project-arrays-iteration-selection/ and complete all the tasks for the "Challenge Project - Develop foreach and if-elseif-else Structures to Process Array Data in C#" module. This is required to earn the "Create and Run Simple C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/challenge-project-arrays-iteration-selection/ and complete all the tasks for the "Challenge Project - Develop foreach and if-elseif-else Structures to Process Array Data in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/italian/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/italian/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 91685d5c3c6..6dba95ceb0e 100644 --- a/curriculum/challenges/italian/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/italian/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 @@ -7,9 +7,9 @@ dashedName: create-readable-code-with-conventions-whitespace-and-comments-in-c-s # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-readable-code/ and complete all the tasks for the "Create Readable Code with Conventions, Whitespace, and Comments in C#" module. This is required to earn the "Create and Run Simple C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-readable-code/ and complete all the tasks for the "Create Readable Code with Conventions, Whitespace, and Comments in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/italian/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/italian/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 5de8874c1f0..d27cf0cd1e9 100644 --- a/curriculum/challenges/italian/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/italian/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 @@ -7,9 +7,9 @@ dashedName: guided-project-develop-foreach-and-if-elseif-else-structures-to-proc # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/guided-project-arrays-iteration-selection/ and complete all the tasks for the "Guided Project - Develop foreach and if-elseif-else Structures to Process Array Data in C#" module. This is required to earn the "Create and Run Simple C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/guided-project-arrays-iteration-selection/ and complete all the tasks for the "Guided Project - Develop foreach and if-elseif-else Structures to Process Array Data in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md index f20ca84fd5d..2b823ab1657 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md @@ -7,9 +7,9 @@ dashedName: install-and-configure-visual-studio-code # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/install-configure-visual-studio-code/ and complete all the tasks for the "Install and Configure Visual Studio Code" module. This is required to earn the "Create and Run Simple C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/install-configure-visual-studio-code/ and complete all the tasks for the "Install and Configure Visual Studio Code" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/italian/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/italian/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 85053bab391..e6c229032ca 100644 --- a/curriculum/challenges/italian/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/italian/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 @@ -7,9 +7,9 @@ dashedName: store-and-iterate-through-sequences-of-data-using-arrays-and-the-for # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-arrays/ and complete all the tasks for the "Store and Iterate Through Sequences of Data Using Arrays and the foreach Statement in C#" module. This is required to earn the "Create and Run Simple C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-arrays/ and complete all the tasks for the "Store and Iterate Through Sequences of Data Using Arrays and the foreach Statement in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/trophy-create-and-run-simple-c-sharp-console-applications.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/trophy-create-and-run-simple-c-sharp-console-applications.md index ee9ba18969f..84642b155e8 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/trophy-create-and-run-simple-c-sharp-console-applications.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/trophy-create-and-run-simple-c-sharp-console-applications.md @@ -8,6 +8,6 @@ msTrophyId: learn.wwl.get-started-c-sharp-part-2.trophy # --description-- -Now that you've completed all of the "Create and Run Simple C# Console Applications" challenges, you should have earned a trophy for it on Microsoft's learning platform. +Now that you've completed all of the "Create and Run Simple C# Console Applications" challenges, you should have earned the trophy for it on the Microsoft Learn platform. If you don't see this trophy when viewing your achievements page, you have not completed all the tasks and your trophy cannot be verified. -Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is required to qualify to take the certification exam. +Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is **required** to qualify for the certification exam. diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md index c6cfab73810..74a50b662e2 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md @@ -7,9 +7,9 @@ dashedName: challenge-project-create-a-mini-game # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/challenge-project-create-mini-game/ and complete all the tasks for the "Challenge Project - Create a Mini-Game" module. This is required to earn the "Create Methods in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/challenge-project-create-mini-game/ and complete all the tasks for the "Challenge Project - Create a Mini-Game" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md index 7d800dc95d4..6a3cec26d7c 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md @@ -7,9 +7,9 @@ dashedName: create-c-sharp-methods-that-return-values # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/create-c-sharp-methods-return-values/ and complete all the tasks for the "Create C# Methods that Return Values" module. This is required to earn the "Create Methods in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/create-c-sharp-methods-return-values/ and complete all the tasks for the "Create C# Methods that Return Values" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md index 95d2f91e09f..4a74949d76a 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md @@ -7,9 +7,9 @@ dashedName: create-c-sharp-methods-with-parameters # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/create-c-sharp-methods-parameters/ and complete all the tasks for the "Create C# Methods with Parameters" module. This is required to earn the "Create Methods in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/create-c-sharp-methods-parameters/ and complete all the tasks for the "Create C# Methods with Parameters" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md index 40da74c905b..67cf7ef2173 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md @@ -7,9 +7,9 @@ dashedName: guided-project-plan-a-petting-zoo-visit # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/guided-project-visit-petting-zoo/ and complete all the tasks for the "Guided Project - Plan a Petting Zoo Visit" module. This is required to earn the "Create Methods in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/guided-project-visit-petting-zoo/ and complete all the tasks for the "Guided Project - Plan a Petting Zoo Visit" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/trophy-create-methods-in-c-sharp-console-applications.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/trophy-create-methods-in-c-sharp-console-applications.md index cf407d0c9c8..850916a4cb2 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/trophy-create-methods-in-c-sharp-console-applications.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/trophy-create-methods-in-c-sharp-console-applications.md @@ -8,6 +8,6 @@ msTrophyId: learn.wwl.get-started-c-sharp-part-5.trophy # --description-- -Now that you've completed all of the "Create Methods in C# Console Applications" challenges, you should have earned a trophy for it on Microsoft's learning platform. +Now that you've completed all of the "Create Methods in C# Console Applications" challenges, you should have earned the trophy for it on the Microsoft Learn platform. If you don't see this trophy when viewing your achievements page, you have not completed all the tasks and your trophy cannot be verified. -Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is required to qualify to take the certification exam. +Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is **required** to qualify for the certification exam. diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md index 010f4a86839..0a1a690df22 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md @@ -7,9 +7,9 @@ dashedName: write-your-first-c-sharp-method # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/write-first-c-sharp-method/ and complete all the tasks for the "Write Your First C# Method" module. This is required to earn the "Create Methods in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/write-first-c-sharp-method/ and complete all the tasks for the "Write Your First C# Method" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/italian/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/italian/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 445fc80c9db..d2a01cef8e0 100644 --- a/curriculum/challenges/italian/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/italian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md @@ -7,9 +7,9 @@ dashedName: challenge-project-debug-a-c-sharp-console-application-using-visual-s # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/challenge-project-debug-c-sharp-console-application/ and complete all the tasks for the "Challenge Project - Debug a C# Console Application Using Visual Studio Code" module. This is required to earn the "Debug C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/challenge-project-debug-c-sharp-console-application/ and complete all the tasks for the "Challenge Project - Debug a C# Console Application Using Visual Studio Code" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md index ed8c9f4f586..ca5a39cb5ac 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md @@ -7,9 +7,9 @@ dashedName: create-and-throw-exceptions-in-c-sharp-console-applications # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/create-throw-exceptions-c-sharp/ and complete all the tasks for the "Create and Throw Exceptions in C# Console Applications" module. This is required earn to the "Debug C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/create-throw-exceptions-c-sharp/ and complete all the tasks for the "Create and Throw Exceptions in C# Console Applications" module. This is **required** earn to the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/italian/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/italian/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 7a1f7b6b76b..51518624ab9 100644 --- a/curriculum/challenges/italian/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/italian/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 @@ -7,9 +7,9 @@ dashedName: guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-appl # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/guided-project-debug-handle-exceptions-c-sharp-console-application/ and complete all the tasks for the "Guided Project - Debug and Handle Exceptions in a C# Console Application Using Visual Studio Code" module. This is required to earn the "Debug C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/guided-project-debug-handle-exceptions-c-sharp-console-application/ and complete all the tasks for the "Guided Project - Debug and Handle Exceptions in a C# Console Application Using Visual Studio Code" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md index 81be41e65a5..264cafc40f0 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md @@ -7,9 +7,9 @@ dashedName: implement-exception-handling-in-c-sharp-console-applications # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/implement-exception-handling-c-sharp/ and complete all the tasks for the "Implement Exception Handling in C# Console Applications" module. This is required to earn the "Debug C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/implement-exception-handling-c-sharp/ and complete all the tasks for the "Implement Exception Handling in C# Console Applications" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/italian/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/italian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md index 09fe87de22e..9690146dbdd 100644 --- a/curriculum/challenges/italian/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/italian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md @@ -7,9 +7,9 @@ dashedName: implement-the-visual-studio-code-debugging-tools-for-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/implement-visual-studio-code-debugging-tools/ and complete all the tasks for the "Implement the Visual Studio Code Debugging Tools for C#" module. This is required to earn the "Debug C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/implement-visual-studio-code-debugging-tools/ and complete all the tasks for the "Implement the Visual Studio Code Debugging Tools for C#" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md index af5cea3af54..5082edd0fba 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md @@ -7,9 +7,9 @@ dashedName: review-the-principles-of-code-debugging-and-exception-handling # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/review-principles-code-debugging-exception-handling-c-sharp/ and complete all the tasks for the "Review the Principles of Code Debugging and Exception Handling" module. This is required to earn the "Debug C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/review-principles-code-debugging-exception-handling-c-sharp/ and complete all the tasks for the "Review the Principles of Code Debugging and Exception Handling" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/trophy-debug-c-sharp-console-applications.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/trophy-debug-c-sharp-console-applications.md index e44e07a5981..261ddfe5c21 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/trophy-debug-c-sharp-console-applications.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/trophy-debug-c-sharp-console-applications.md @@ -8,6 +8,6 @@ msTrophyId: learn.wwl.get-started-c-sharp-part-6.trophy # --description-- -Now that you've completed all of the "Debug C# Console Applications" challenges, you should have earned a trophy for it on Microsoft's learning platform. +Now that you've completed all of the "Debug C# Console Applications" challenges, you should have earned the trophy for it on the Microsoft Learn platform. If you don't see this trophy when viewing your achievements page, you have not completed all the tasks and your trophy cannot be verified. -Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is required to qualify to take the certification exam. +Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is **required** to qualify for the certification exam. diff --git a/curriculum/challenges/italian/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/italian/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 5535a7735d9..ae6090709b9 100644 --- a/curriculum/challenges/italian/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/italian/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 @@ -7,9 +7,9 @@ dashedName: challenge-project-work-with-variable-data-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/challenge-project-work-variable-data-c-sharp/ and complete all the tasks for the "Challenge Project - Work with Variable Data in C#" module. This is required to earn the "Work with Variable Data in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/challenge-project-work-variable-data-c-sharp/ and complete all the tasks for the "Challenge Project - Work with Variable Data in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/italian/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/italian/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 391aafe7934..9a352f99813 100644 --- a/curriculum/challenges/italian/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/italian/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 @@ -7,9 +7,9 @@ dashedName: choose-the-correct-data-type-in-your-c-sharp-code # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-choose-data-type/ and complete all the tasks for the "Choose the Correct Data Type in Your C# Code" module. This is required to earn the "Work with Variable Data in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-choose-data-type/ and complete all the tasks for the "Choose the Correct Data Type in Your C# Code" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/italian/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/italian/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 5d404268eba..40188ab92c1 100644 --- a/curriculum/challenges/italian/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/italian/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 @@ -7,9 +7,9 @@ dashedName: convert-data-types-using-casting-and-conversion-techniques-in-c-shar # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-convert-cast/ and complete all the tasks for the "Convert Data Types Using Casting and Conversion Techniques in C#" module. This is required to earn the "Work with Variable Data in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-convert-cast/ and complete all the tasks for the "Convert Data Types Using Casting and Conversion Techniques in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/italian/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/italian/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 98746a03b83..727c09bd909 100644 --- a/curriculum/challenges/italian/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/italian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md @@ -7,9 +7,9 @@ dashedName: format-alphanumeric-data-for-presentation-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-format-strings/ and complete all the tasks for the "Format Alphanumeric Data for Presentation in C#" module. This is required to earn the "Work with Variable Data in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-format-strings/ and complete all the tasks for the "Format Alphanumeric Data for Presentation in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/italian/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/italian/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 bd1ad787ef1..7e2fccfbd59 100644 --- a/curriculum/challenges/italian/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/italian/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 @@ -7,9 +7,9 @@ dashedName: guided-project-work-with-variable-data-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/guided-project-work-variable-data-c-sharp/ and complete all the tasks for the "Guided Project - Work with Variable Data in C#" module. This is required to earn the "Work with Variable Data in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/guided-project-work-variable-data-c-sharp/ and complete all the tasks for the "Guided Project - Work with Variable Data in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/italian/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/italian/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 1707c7bc46b..0c355ebc15d 100644 --- a/curriculum/challenges/italian/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/italian/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 @@ -7,9 +7,9 @@ dashedName: modify-the-content-of-string-using-built-in-string-data-type-methods # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-modify-content/ and complete all the tasks for the "Modify the Content of Strings Using Built-In String Data Type Methods in C#" module. This is required to earn the "Work with Variable Data in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-modify-content/ and complete all the tasks for the "Modify the Content of Strings Using Built-In String Data Type Methods in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/italian/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/italian/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 89eb890f477..9e5f8277216 100644 --- a/curriculum/challenges/italian/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/italian/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 @@ -7,9 +7,9 @@ dashedName: perform-operations-on-arrays-using-helpers-methods-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-arrays-operations/ and complete all the tasks for the "Perform Operations on Arrays Using Helper Methods in C#" module. This is required to earn the "Work with Variable Data in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-arrays-operations/ and complete all the tasks for the "Perform Operations on Arrays Using Helper Methods in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/trophy-work-with-variable-data-in-c-sharp-console-applications.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/trophy-work-with-variable-data-in-c-sharp-console-applications.md index c41d7abac51..59f6dfd85c8 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/trophy-work-with-variable-data-in-c-sharp-console-applications.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/trophy-work-with-variable-data-in-c-sharp-console-applications.md @@ -8,6 +8,6 @@ msTrophyId: learn.wwl.get-started-c-sharp-part-4.trophy # --description-- -Now that you've completed all of the "Work with Variable Data in C# Console Applications" challenges, you should have earned a trophy for it on Microsoft's learning platform. +Now that you've completed all of the "Work with Variable Data in C# Console Applications" challenges, you should have earned the trophy for it on the Microsoft Learn platform. If you don't see this trophy when viewing your achievements page, you have not completed all the tasks and your trophy cannot be verified. -Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is required to qualify to take the certification exam. +Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is **required** to qualify for the certification exam. diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md index d7980f1b170..2fa4818f4d3 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md @@ -7,9 +7,9 @@ dashedName: guided-project-calculate-and-print-student-grades # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/guided-project-calculate-print-student-grades/ and complete all the tasks for the "Guided Project - Calculate and Print Student Grades" module. This is required to earn the "Write Your First Code Using C#" trophy. +1. Go to https://learn.microsoft.com/training/modules/guided-project-calculate-print-student-grades/ and complete all the tasks for the "Guided Project - Calculate and Print Student Grades" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md index bc13b8ba9d4..a7e0bd988c2 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md @@ -7,16 +7,16 @@ dashedName: guided-project-calculate-final-gpa # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/guided-project-calculate-final-gpa/ and complete all the tasks for the "Guided Project - Calculate Final GPA" module. This is required to earn the "Write Your First Code Using C#" trophy. +1. Go to https://learn.microsoft.com/training/modules/guided-project-calculate-final-gpa/ and complete all the tasks for the "Guided Project - Calculate Final GPA" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- ## --text-- -Suppose `decimal gradePointAverage = 3.99872831;`. +Suppose `decimal gradePointAverage = 3.99872831m;`. What is the value of `(int) gradePointAverage`? diff --git a/curriculum/challenges/italian/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/italian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md index 38c6578cb25..874e5cd5650 100644 --- a/curriculum/challenges/italian/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/italian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md @@ -7,9 +7,9 @@ dashedName: perform-basic-operations-on-numbers-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-basic-operations/ and complete all the tasks for the "Perform Basic Operations on Numbers in C#" module. This is required to earn the "Write Your First Code Using C#" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-basic-operations/ and complete all the tasks for the "Perform Basic Operations on Numbers in C#" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md index 97952d51a26..f4d39f5bbca 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md @@ -7,9 +7,9 @@ dashedName: perform-basic-string-formatting-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-basic-formatting/ and complete all the tasks for the "Perform Basic String Formatting in C#" module. This is required to earn the "Write Your First Code Using C#" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-basic-formatting/ and complete all the tasks for the "Perform Basic String Formatting in C#" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/italian/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/italian/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 d90168d0b5c..c75f54c2d88 100644 --- a/curriculum/challenges/italian/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/italian/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 @@ -7,9 +7,9 @@ dashedName: store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-literals-variables/ and complete all the tasks for the "Store and Retrieve Data Using Literal and Variable Values in C#" module. This is required to earn the "Write Your First Code Using C#" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-literals-variables/ and complete all the tasks for the "Store and Retrieve Data Using Literal and Variable Values in C#" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/trophy-write-your-first-code-using-c-sharp.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/trophy-write-your-first-code-using-c-sharp.md index 477051a5def..c2cad526381 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/trophy-write-your-first-code-using-c-sharp.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/trophy-write-your-first-code-using-c-sharp.md @@ -8,6 +8,6 @@ msTrophyId: learn.wwl.get-started-c-sharp-part-1.trophy # --description-- -Now that you've completed all of the "Write Your First Code Using C#" challenges, you should have earned a trophy for it on Microsoft's learning platform. +Now that you've completed all of the "Write Your First Code Using C#" challenges, you should have earned the trophy for it on the Microsoft Learn platform. If you don't see this trophy when viewing your achievements page, you have not completed all the tasks and your trophy cannot be verified. -Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is required to qualify to take the certification exam. +Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is **required** to qualify for the certification exam. diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md index 510536eaab4..1295cf64070 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md @@ -7,9 +7,9 @@ dashedName: write-your-first-c-sharp-code # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-write-first/ and complete all the tasks for the "Write Your First C# Code" module. This is required to earn the "Write Your First Code Using C#" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-write-first/ and complete all the tasks in the "Write Your First C# Code" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/japanese/02-javascript-algorithms-and-data-structures/basic-javascript/manipulate-arrays-with-push.md b/curriculum/challenges/japanese/02-javascript-algorithms-and-data-structures/basic-javascript/manipulate-arrays-with-push.md index ee28a6a25e9..d55d95f7707 100644 --- a/curriculum/challenges/japanese/02-javascript-algorithms-and-data-structures/basic-javascript/manipulate-arrays-with-push.md +++ b/curriculum/challenges/japanese/02-javascript-algorithms-and-data-structures/basic-javascript/manipulate-arrays-with-push.md @@ -9,21 +9,21 @@ dashedName: manipulate-arrays-with-push # --description-- -`push()` 関数を使用して、配列の末尾に簡単にデータを追加することができます。 +An easy way to append data to the end of an array is via the `push()` method. -`.push()` は 1 つ以上のパラメーターを受け取り、それらを配列の末尾に「プッシュ (押し込み)」します。 +The `push()` method takes one or more arguments and appends them to the end of the array, in the order in which they appear. It returns the new length of the array. 例: ```js const arr1 = [1, 2, 3]; -arr1.push(4); +arr1.push(4, 5); const arr2 = ["Stimpson", "J", "cat"]; arr2.push(["happy", "joy"]); ``` -`arr1` の値は `[1, 2, 3, 4]` になり、`arr2` の値は `["Stimpson", "J", "cat", ["happy", "joy"]]` になります。 +`arr1` now has the value `[1, 2, 3, 4, 5]` and `arr2` has the value `["Stimpson", "J", "cat", ["happy", "joy"]]`. # --instructions-- diff --git a/curriculum/challenges/japanese/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfa22d1b521be39a3de7be0.md b/curriculum/challenges/japanese/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfa22d1b521be39a3de7be0.md index eae1359ac9a..e33cd53748e 100644 --- a/curriculum/challenges/japanese/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfa22d1b521be39a3de7be0.md +++ b/curriculum/challenges/japanese/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfa22d1b521be39a3de7be0.md @@ -7,9 +7,13 @@ dashedName: step-12 # --description-- -前のステップでは、`link to cat pictures` という言葉をアンカー (`a`) の開始タグと終了タグの間に配置することで、リンクに変えることができました。 ある要素、例えば `p` 要素の中の言葉に対しても、同じようにリンクを設定することができます。 +You can turn any text into a link, such as the text inside of a `p` element. -`p` 要素内のテキストについて、`cat photos` という言葉の前後にアンカータグ (`a`) の開始タグと終了タグを追加して、この部分を `https://freecatphotoapp.com` へのリンクにしてください。 +``` html +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. Then set the `href` attribute to `https://freecatphotoapp.com/` # --hints-- diff --git a/curriculum/challenges/japanese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/6476f5c17f99146071ee884c.md b/curriculum/challenges/japanese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/6476f5c17f99146071ee884c.md index 03ea4e8598b..71b68d01fe8 100644 --- a/curriculum/challenges/japanese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/6476f5c17f99146071ee884c.md +++ b/curriculum/challenges/japanese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/6476f5c17f99146071ee884c.md @@ -11,7 +11,7 @@ You could see that nothing happens. The `.cat-head` element did not move despite When you use the `relative` value, the element is still positioned according to the normal flow of the document, but the `top`, `left`, `bottom`, and `right` values become active. -Instead of `static`, give you `.cat-head` a position of `relative`, and leave both `top` and `left` properties as they are. +Instead of `static`, give your `.cat-head` a position of `relative`, and leave both `top` and `left` properties as they are. # --hints-- diff --git a/curriculum/challenges/japanese/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/japanese/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 f3da4b4fb3f..7c50ac42745 100644 --- a/curriculum/challenges/japanese/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/japanese/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 @@ -7,9 +7,9 @@ dashedName: add-looping-logic-to-your-code-using-the-do-while-and-while-statemen # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-do-while/ and complete all the tasks for the "Add Looping Logic to Your Code Using the do-while and while Statements in C#" module. This is required to earn the "Add Logic to C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-do-while/ and complete all the tasks for the "Add Looping Logic to Your Code Using the do-while and while Statements in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/japanese/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/japanese/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 f63f55493b2..f6641f0316f 100644 --- a/curriculum/challenges/japanese/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/japanese/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 @@ -7,9 +7,9 @@ dashedName: branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-switch-case/ and complete all the tasks for the "Branch the Flow of Code Using the switch-case Construct in C#" module. This is required to earn the "Add Logic to C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-switch-case/ and complete all the tasks for the "Branch the Flow of Code Using the switch-case Construct in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/japanese/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/japanese/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 9e0f17ab674..265d870150e 100644 --- a/curriculum/challenges/japanese/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/japanese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md @@ -7,9 +7,9 @@ dashedName: challenge-project-develop-branching-and-looping-structures-in-c-shar # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/challenge-project-develop-branching-looping-structures-c-sharp/ and complete all the tasks for the "Challenge Project - Develop Branching and Looping Structures in C#" module. This is required to earn the "Add Logic to C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/challenge-project-develop-branching-looping-structures-c-sharp/ and complete all the tasks for the "Challenge Project - Develop Branching and Looping Structures in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/japanese/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/japanese/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 ea77a8f1bfc..daa95972023 100644 --- a/curriculum/challenges/japanese/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/japanese/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 @@ -7,9 +7,9 @@ dashedName: control-variable-scope-and-logic-using-code-blocks-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-code-blocks/ and complete all the tasks for the "Control Variable Scope and Logic Using Code Blocks in C#" module. This is required to earn the "Add Logic to C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-code-blocks/ and complete all the tasks for the "Control Variable Scope and Logic Using Code Blocks in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/japanese/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/japanese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md index 81d114a0d00..1f1c72e0c8a 100644 --- a/curriculum/challenges/japanese/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/japanese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md @@ -7,9 +7,9 @@ dashedName: evaluate-boolean-expressions-to-make-decisions-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-evaluate-boolean-expressions/ and complete all the tasks for the "Evaluate Boolean Expressions to Make Decisions in C#" module. This is required to earn the "Add Logic to C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-evaluate-boolean-expressions/ and complete all the tasks for the "Evaluate Boolean Expressions to Make Decisions in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/japanese/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/japanese/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 868a9ba5696..7cfc12d242d 100644 --- a/curriculum/challenges/japanese/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/japanese/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 @@ -7,9 +7,9 @@ dashedName: guided-project-develop-conditional-branching-and-looping-structures- # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/guided-project-develop-conditional-branching-looping/ and complete all the tasks for the "Guided Project - Develop Conditional Branching and Looping Structures in C#" module. This is required to earn the "Add Logic to C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/guided-project-develop-conditional-branching-looping/ and complete all the tasks for the "Guided Project - Develop Conditional Branching and Looping Structures in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/japanese/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/japanese/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 ecbc1c26392..fbc5beccffd 100644 --- a/curriculum/challenges/japanese/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/japanese/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 @@ -7,9 +7,9 @@ dashedName: iterate-through-a-code-block-using-the-for-statement-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-for/ and complete all the tasks for the "Iterate Through a Code Block Using the for Statement in C#" module. This is required to earn the "Add Logic to C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-for/ and complete all the tasks for the "Iterate Through a Code Block Using the for Statement in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/trophy-add-logic-to-c-sharp-console-applications.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/trophy-add-logic-to-c-sharp-console-applications.md index 92b3c911a26..31e5799bf8a 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/trophy-add-logic-to-c-sharp-console-applications.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/trophy-add-logic-to-c-sharp-console-applications.md @@ -8,6 +8,6 @@ msTrophyId: learn.wwl.get-started-c-sharp-part-3.trophy # --description-- -Now that you've completed all of the "Add Logic to C# Console Applications" challenges, you should have earned a trophy for it on Microsoft's learning platform. +Now that you've completed all of the "Add Logic to C# Console Applications" challenges, you should have earned the trophy for it on the Microsoft Learn platform. If you don't see this trophy when viewing your achievements page, you have not completed all the tasks and your trophy cannot be verified. -Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is required to qualify to take the certification exam. +Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is **required** to qualify for the certification exam. diff --git a/curriculum/challenges/japanese/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/japanese/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 58d431728ba..1a0f1c91668 100644 --- a/curriculum/challenges/japanese/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/japanese/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 @@ -7,9 +7,9 @@ dashedName: add-decision-logic-to-your-code-using-if-else-and-else-if-statements # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-if-elseif-else/ and complete all the tasks for the "Add Decision Logic to Your Code Using if, else, and else if statements in C#" module. This is required to earn the "Create and Run Simple C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-if-elseif-else/ and complete all the tasks for the "Add Decision Logic to Your Code Using if, else, and else if statements in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/japanese/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/japanese/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 863f4b0e8e4..3ba95b9e155 100644 --- a/curriculum/challenges/japanese/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/japanese/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 @@ -7,9 +7,9 @@ dashedName: call-methods-from-the-dot-net-class-library-using-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-call-methods/ and complete all the tasks for the "Call Methods From the .NET Class Library Using C#" module. This is required to earn the "Create and Run Simple C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-call-methods/ and complete all the tasks for the "Call Methods From the .NET Class Library Using C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/japanese/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/japanese/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 38286900541..2fa7a6ca39e 100644 --- a/curriculum/challenges/japanese/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/japanese/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 @@ -7,9 +7,9 @@ dashedName: challenge-project-develop-foreach-and-if-elseif-else-structures-to-p # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/challenge-project-arrays-iteration-selection/ and complete all the tasks for the "Challenge Project - Develop foreach and if-elseif-else Structures to Process Array Data in C#" module. This is required to earn the "Create and Run Simple C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/challenge-project-arrays-iteration-selection/ and complete all the tasks for the "Challenge Project - Develop foreach and if-elseif-else Structures to Process Array Data in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/japanese/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/japanese/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 91685d5c3c6..6dba95ceb0e 100644 --- a/curriculum/challenges/japanese/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/japanese/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 @@ -7,9 +7,9 @@ dashedName: create-readable-code-with-conventions-whitespace-and-comments-in-c-s # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-readable-code/ and complete all the tasks for the "Create Readable Code with Conventions, Whitespace, and Comments in C#" module. This is required to earn the "Create and Run Simple C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-readable-code/ and complete all the tasks for the "Create Readable Code with Conventions, Whitespace, and Comments in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/japanese/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/japanese/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 5de8874c1f0..d27cf0cd1e9 100644 --- a/curriculum/challenges/japanese/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/japanese/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 @@ -7,9 +7,9 @@ dashedName: guided-project-develop-foreach-and-if-elseif-else-structures-to-proc # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/guided-project-arrays-iteration-selection/ and complete all the tasks for the "Guided Project - Develop foreach and if-elseif-else Structures to Process Array Data in C#" module. This is required to earn the "Create and Run Simple C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/guided-project-arrays-iteration-selection/ and complete all the tasks for the "Guided Project - Develop foreach and if-elseif-else Structures to Process Array Data in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md index f20ca84fd5d..2b823ab1657 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md @@ -7,9 +7,9 @@ dashedName: install-and-configure-visual-studio-code # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/install-configure-visual-studio-code/ and complete all the tasks for the "Install and Configure Visual Studio Code" module. This is required to earn the "Create and Run Simple C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/install-configure-visual-studio-code/ and complete all the tasks for the "Install and Configure Visual Studio Code" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/japanese/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/japanese/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 85053bab391..e6c229032ca 100644 --- a/curriculum/challenges/japanese/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/japanese/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 @@ -7,9 +7,9 @@ dashedName: store-and-iterate-through-sequences-of-data-using-arrays-and-the-for # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-arrays/ and complete all the tasks for the "Store and Iterate Through Sequences of Data Using Arrays and the foreach Statement in C#" module. This is required to earn the "Create and Run Simple C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-arrays/ and complete all the tasks for the "Store and Iterate Through Sequences of Data Using Arrays and the foreach Statement in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/trophy-create-and-run-simple-c-sharp-console-applications.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/trophy-create-and-run-simple-c-sharp-console-applications.md index ee9ba18969f..84642b155e8 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/trophy-create-and-run-simple-c-sharp-console-applications.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/trophy-create-and-run-simple-c-sharp-console-applications.md @@ -8,6 +8,6 @@ msTrophyId: learn.wwl.get-started-c-sharp-part-2.trophy # --description-- -Now that you've completed all of the "Create and Run Simple C# Console Applications" challenges, you should have earned a trophy for it on Microsoft's learning platform. +Now that you've completed all of the "Create and Run Simple C# Console Applications" challenges, you should have earned the trophy for it on the Microsoft Learn platform. If you don't see this trophy when viewing your achievements page, you have not completed all the tasks and your trophy cannot be verified. -Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is required to qualify to take the certification exam. +Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is **required** to qualify for the certification exam. diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md index c6cfab73810..74a50b662e2 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md @@ -7,9 +7,9 @@ dashedName: challenge-project-create-a-mini-game # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/challenge-project-create-mini-game/ and complete all the tasks for the "Challenge Project - Create a Mini-Game" module. This is required to earn the "Create Methods in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/challenge-project-create-mini-game/ and complete all the tasks for the "Challenge Project - Create a Mini-Game" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md index 7d800dc95d4..6a3cec26d7c 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md @@ -7,9 +7,9 @@ dashedName: create-c-sharp-methods-that-return-values # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/create-c-sharp-methods-return-values/ and complete all the tasks for the "Create C# Methods that Return Values" module. This is required to earn the "Create Methods in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/create-c-sharp-methods-return-values/ and complete all the tasks for the "Create C# Methods that Return Values" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md index 95d2f91e09f..4a74949d76a 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md @@ -7,9 +7,9 @@ dashedName: create-c-sharp-methods-with-parameters # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/create-c-sharp-methods-parameters/ and complete all the tasks for the "Create C# Methods with Parameters" module. This is required to earn the "Create Methods in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/create-c-sharp-methods-parameters/ and complete all the tasks for the "Create C# Methods with Parameters" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md index 40da74c905b..67cf7ef2173 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md @@ -7,9 +7,9 @@ dashedName: guided-project-plan-a-petting-zoo-visit # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/guided-project-visit-petting-zoo/ and complete all the tasks for the "Guided Project - Plan a Petting Zoo Visit" module. This is required to earn the "Create Methods in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/guided-project-visit-petting-zoo/ and complete all the tasks for the "Guided Project - Plan a Petting Zoo Visit" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/trophy-create-methods-in-c-sharp-console-applications.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/trophy-create-methods-in-c-sharp-console-applications.md index cf407d0c9c8..850916a4cb2 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/trophy-create-methods-in-c-sharp-console-applications.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/trophy-create-methods-in-c-sharp-console-applications.md @@ -8,6 +8,6 @@ msTrophyId: learn.wwl.get-started-c-sharp-part-5.trophy # --description-- -Now that you've completed all of the "Create Methods in C# Console Applications" challenges, you should have earned a trophy for it on Microsoft's learning platform. +Now that you've completed all of the "Create Methods in C# Console Applications" challenges, you should have earned the trophy for it on the Microsoft Learn platform. If you don't see this trophy when viewing your achievements page, you have not completed all the tasks and your trophy cannot be verified. -Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is required to qualify to take the certification exam. +Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is **required** to qualify for the certification exam. diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md index 010f4a86839..0a1a690df22 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md @@ -7,9 +7,9 @@ dashedName: write-your-first-c-sharp-method # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/write-first-c-sharp-method/ and complete all the tasks for the "Write Your First C# Method" module. This is required to earn the "Create Methods in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/write-first-c-sharp-method/ and complete all the tasks for the "Write Your First C# Method" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/japanese/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/japanese/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 445fc80c9db..d2a01cef8e0 100644 --- a/curriculum/challenges/japanese/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/japanese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md @@ -7,9 +7,9 @@ dashedName: challenge-project-debug-a-c-sharp-console-application-using-visual-s # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/challenge-project-debug-c-sharp-console-application/ and complete all the tasks for the "Challenge Project - Debug a C# Console Application Using Visual Studio Code" module. This is required to earn the "Debug C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/challenge-project-debug-c-sharp-console-application/ and complete all the tasks for the "Challenge Project - Debug a C# Console Application Using Visual Studio Code" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md index ed8c9f4f586..ca5a39cb5ac 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md @@ -7,9 +7,9 @@ dashedName: create-and-throw-exceptions-in-c-sharp-console-applications # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/create-throw-exceptions-c-sharp/ and complete all the tasks for the "Create and Throw Exceptions in C# Console Applications" module. This is required earn to the "Debug C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/create-throw-exceptions-c-sharp/ and complete all the tasks for the "Create and Throw Exceptions in C# Console Applications" module. This is **required** earn to the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/japanese/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/japanese/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 7a1f7b6b76b..51518624ab9 100644 --- a/curriculum/challenges/japanese/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/japanese/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 @@ -7,9 +7,9 @@ dashedName: guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-appl # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/guided-project-debug-handle-exceptions-c-sharp-console-application/ and complete all the tasks for the "Guided Project - Debug and Handle Exceptions in a C# Console Application Using Visual Studio Code" module. This is required to earn the "Debug C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/guided-project-debug-handle-exceptions-c-sharp-console-application/ and complete all the tasks for the "Guided Project - Debug and Handle Exceptions in a C# Console Application Using Visual Studio Code" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md index 81be41e65a5..264cafc40f0 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md @@ -7,9 +7,9 @@ dashedName: implement-exception-handling-in-c-sharp-console-applications # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/implement-exception-handling-c-sharp/ and complete all the tasks for the "Implement Exception Handling in C# Console Applications" module. This is required to earn the "Debug C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/implement-exception-handling-c-sharp/ and complete all the tasks for the "Implement Exception Handling in C# Console Applications" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/japanese/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/japanese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md index 09fe87de22e..9690146dbdd 100644 --- a/curriculum/challenges/japanese/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/japanese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md @@ -7,9 +7,9 @@ dashedName: implement-the-visual-studio-code-debugging-tools-for-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/implement-visual-studio-code-debugging-tools/ and complete all the tasks for the "Implement the Visual Studio Code Debugging Tools for C#" module. This is required to earn the "Debug C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/implement-visual-studio-code-debugging-tools/ and complete all the tasks for the "Implement the Visual Studio Code Debugging Tools for C#" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md index af5cea3af54..5082edd0fba 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md @@ -7,9 +7,9 @@ dashedName: review-the-principles-of-code-debugging-and-exception-handling # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/review-principles-code-debugging-exception-handling-c-sharp/ and complete all the tasks for the "Review the Principles of Code Debugging and Exception Handling" module. This is required to earn the "Debug C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/review-principles-code-debugging-exception-handling-c-sharp/ and complete all the tasks for the "Review the Principles of Code Debugging and Exception Handling" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/trophy-debug-c-sharp-console-applications.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/trophy-debug-c-sharp-console-applications.md index e44e07a5981..261ddfe5c21 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/trophy-debug-c-sharp-console-applications.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/trophy-debug-c-sharp-console-applications.md @@ -8,6 +8,6 @@ msTrophyId: learn.wwl.get-started-c-sharp-part-6.trophy # --description-- -Now that you've completed all of the "Debug C# Console Applications" challenges, you should have earned a trophy for it on Microsoft's learning platform. +Now that you've completed all of the "Debug C# Console Applications" challenges, you should have earned the trophy for it on the Microsoft Learn platform. If you don't see this trophy when viewing your achievements page, you have not completed all the tasks and your trophy cannot be verified. -Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is required to qualify to take the certification exam. +Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is **required** to qualify for the certification exam. diff --git a/curriculum/challenges/japanese/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/japanese/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 5535a7735d9..ae6090709b9 100644 --- a/curriculum/challenges/japanese/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/japanese/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 @@ -7,9 +7,9 @@ dashedName: challenge-project-work-with-variable-data-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/challenge-project-work-variable-data-c-sharp/ and complete all the tasks for the "Challenge Project - Work with Variable Data in C#" module. This is required to earn the "Work with Variable Data in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/challenge-project-work-variable-data-c-sharp/ and complete all the tasks for the "Challenge Project - Work with Variable Data in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/japanese/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/japanese/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 391aafe7934..9a352f99813 100644 --- a/curriculum/challenges/japanese/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/japanese/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 @@ -7,9 +7,9 @@ dashedName: choose-the-correct-data-type-in-your-c-sharp-code # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-choose-data-type/ and complete all the tasks for the "Choose the Correct Data Type in Your C# Code" module. This is required to earn the "Work with Variable Data in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-choose-data-type/ and complete all the tasks for the "Choose the Correct Data Type in Your C# Code" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/japanese/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/japanese/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 5d404268eba..40188ab92c1 100644 --- a/curriculum/challenges/japanese/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/japanese/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 @@ -7,9 +7,9 @@ dashedName: convert-data-types-using-casting-and-conversion-techniques-in-c-shar # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-convert-cast/ and complete all the tasks for the "Convert Data Types Using Casting and Conversion Techniques in C#" module. This is required to earn the "Work with Variable Data in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-convert-cast/ and complete all the tasks for the "Convert Data Types Using Casting and Conversion Techniques in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/japanese/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/japanese/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 98746a03b83..727c09bd909 100644 --- a/curriculum/challenges/japanese/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/japanese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md @@ -7,9 +7,9 @@ dashedName: format-alphanumeric-data-for-presentation-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-format-strings/ and complete all the tasks for the "Format Alphanumeric Data for Presentation in C#" module. This is required to earn the "Work with Variable Data in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-format-strings/ and complete all the tasks for the "Format Alphanumeric Data for Presentation in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/japanese/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/japanese/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 bd1ad787ef1..7e2fccfbd59 100644 --- a/curriculum/challenges/japanese/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/japanese/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 @@ -7,9 +7,9 @@ dashedName: guided-project-work-with-variable-data-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/guided-project-work-variable-data-c-sharp/ and complete all the tasks for the "Guided Project - Work with Variable Data in C#" module. This is required to earn the "Work with Variable Data in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/guided-project-work-variable-data-c-sharp/ and complete all the tasks for the "Guided Project - Work with Variable Data in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/japanese/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/japanese/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 1707c7bc46b..0c355ebc15d 100644 --- a/curriculum/challenges/japanese/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/japanese/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 @@ -7,9 +7,9 @@ dashedName: modify-the-content-of-string-using-built-in-string-data-type-methods # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-modify-content/ and complete all the tasks for the "Modify the Content of Strings Using Built-In String Data Type Methods in C#" module. This is required to earn the "Work with Variable Data in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-modify-content/ and complete all the tasks for the "Modify the Content of Strings Using Built-In String Data Type Methods in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/japanese/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/japanese/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 89eb890f477..9e5f8277216 100644 --- a/curriculum/challenges/japanese/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/japanese/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 @@ -7,9 +7,9 @@ dashedName: perform-operations-on-arrays-using-helpers-methods-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-arrays-operations/ and complete all the tasks for the "Perform Operations on Arrays Using Helper Methods in C#" module. This is required to earn the "Work with Variable Data in C# Console Applications" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-arrays-operations/ and complete all the tasks for the "Perform Operations on Arrays Using Helper Methods in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/trophy-work-with-variable-data-in-c-sharp-console-applications.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/trophy-work-with-variable-data-in-c-sharp-console-applications.md index c41d7abac51..59f6dfd85c8 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/trophy-work-with-variable-data-in-c-sharp-console-applications.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/trophy-work-with-variable-data-in-c-sharp-console-applications.md @@ -8,6 +8,6 @@ msTrophyId: learn.wwl.get-started-c-sharp-part-4.trophy # --description-- -Now that you've completed all of the "Work with Variable Data in C# Console Applications" challenges, you should have earned a trophy for it on Microsoft's learning platform. +Now that you've completed all of the "Work with Variable Data in C# Console Applications" challenges, you should have earned the trophy for it on the Microsoft Learn platform. If you don't see this trophy when viewing your achievements page, you have not completed all the tasks and your trophy cannot be verified. -Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is required to qualify to take the certification exam. +Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is **required** to qualify for the certification exam. diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md index d7980f1b170..2fa4818f4d3 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md @@ -7,9 +7,9 @@ dashedName: guided-project-calculate-and-print-student-grades # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/guided-project-calculate-print-student-grades/ and complete all the tasks for the "Guided Project - Calculate and Print Student Grades" module. This is required to earn the "Write Your First Code Using C#" trophy. +1. Go to https://learn.microsoft.com/training/modules/guided-project-calculate-print-student-grades/ and complete all the tasks for the "Guided Project - Calculate and Print Student Grades" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md index bc13b8ba9d4..a7e0bd988c2 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md @@ -7,16 +7,16 @@ dashedName: guided-project-calculate-final-gpa # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/guided-project-calculate-final-gpa/ and complete all the tasks for the "Guided Project - Calculate Final GPA" module. This is required to earn the "Write Your First Code Using C#" trophy. +1. Go to https://learn.microsoft.com/training/modules/guided-project-calculate-final-gpa/ and complete all the tasks for the "Guided Project - Calculate Final GPA" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- ## --text-- -Suppose `decimal gradePointAverage = 3.99872831;`. +Suppose `decimal gradePointAverage = 3.99872831m;`. What is the value of `(int) gradePointAverage`? diff --git a/curriculum/challenges/japanese/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/japanese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md index 38c6578cb25..874e5cd5650 100644 --- a/curriculum/challenges/japanese/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/japanese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md @@ -7,9 +7,9 @@ dashedName: perform-basic-operations-on-numbers-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-basic-operations/ and complete all the tasks for the "Perform Basic Operations on Numbers in C#" module. This is required to earn the "Write Your First Code Using C#" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-basic-operations/ and complete all the tasks for the "Perform Basic Operations on Numbers in C#" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md index 97952d51a26..f4d39f5bbca 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md @@ -7,9 +7,9 @@ dashedName: perform-basic-string-formatting-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-basic-formatting/ and complete all the tasks for the "Perform Basic String Formatting in C#" module. This is required to earn the "Write Your First Code Using C#" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-basic-formatting/ and complete all the tasks for the "Perform Basic String Formatting in C#" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/japanese/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/japanese/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 d90168d0b5c..c75f54c2d88 100644 --- a/curriculum/challenges/japanese/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/japanese/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 @@ -7,9 +7,9 @@ dashedName: store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-literals-variables/ and complete all the tasks for the "Store and Retrieve Data Using Literal and Variable Values in C#" module. This is required to earn the "Write Your First Code Using C#" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-literals-variables/ and complete all the tasks for the "Store and Retrieve Data Using Literal and Variable Values in C#" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/trophy-write-your-first-code-using-c-sharp.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/trophy-write-your-first-code-using-c-sharp.md index 477051a5def..c2cad526381 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/trophy-write-your-first-code-using-c-sharp.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/trophy-write-your-first-code-using-c-sharp.md @@ -8,6 +8,6 @@ msTrophyId: learn.wwl.get-started-c-sharp-part-1.trophy # --description-- -Now that you've completed all of the "Write Your First Code Using C#" challenges, you should have earned a trophy for it on Microsoft's learning platform. +Now that you've completed all of the "Write Your First Code Using C#" challenges, you should have earned the trophy for it on the Microsoft Learn platform. If you don't see this trophy when viewing your achievements page, you have not completed all the tasks and your trophy cannot be verified. -Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is required to qualify to take the certification exam. +Link your Microsoft username to your freeCodeCamp account and click the "Verify Trophy" button below to complete the challenge. This trophy is **required** to qualify for the certification exam. diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md index 510536eaab4..1295cf64070 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md @@ -7,9 +7,9 @@ dashedName: write-your-first-c-sharp-code # --description-- -This challenge will be partially completed on Microsoft's learn platform. Follow these instructions to complete the challenge: +This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge: -1. Go to https://learn.microsoft.com/training/modules/csharp-write-first/ and complete all the tasks for the "Write Your First C# Code" module. This is required to earn the "Write Your First Code Using C#" trophy. +1. Go to https://learn.microsoft.com/training/modules/csharp-write-first/ and complete all the tasks in the "Write Your First C# Code" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. # --question-- diff --git a/curriculum/challenges/portuguese/02-javascript-algorithms-and-data-structures/basic-javascript/manipulate-arrays-with-push.md b/curriculum/challenges/portuguese/02-javascript-algorithms-and-data-structures/basic-javascript/manipulate-arrays-with-push.md index 3c40bbeb0eb..e56e4b16a20 100644 --- a/curriculum/challenges/portuguese/02-javascript-algorithms-and-data-structures/basic-javascript/manipulate-arrays-with-push.md +++ b/curriculum/challenges/portuguese/02-javascript-algorithms-and-data-structures/basic-javascript/manipulate-arrays-with-push.md @@ -9,21 +9,21 @@ dashedName: manipulate-arrays-with-push # --description-- -Uma forma fácil de adicionar dados no final de um array é através da função `push()`. +Um modo fácil de adicionar dados no final de um array é através do método `push()`. -`.push()` recebe um ou mais parâmetros e "empurra" eles no final do array. +O método `push()` recebe um ou mais argumentos e os insere no final do array, na ordem em que eles aparecerem. Ele retorna o novo comprimento do array. Exemplos: ```js const arr1 = [1, 2, 3]; -arr1.push(4); +arr1.push(4, 5); const arr2 = ["Stimpson", "J", "cat"]; arr2.push(["happy", "joy"]); ``` -`arr1` agora tem o valor de `[1, 2, 3, 4]` e `arr2` tem o valor de `["Stimpson", "J", "cat", ["happy", "joy"]]`. +`arr1` agora tem o valor de `[1, 2, 3, 4, 5]` e `arr2` tem o valor de `["Stimpson", "J", "cat", ["happy", "joy"]]`. # --instructions-- diff --git a/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-css-colors-by-building-a-set-of-colored-markers/617bc3386dc7d07d6469bf20.md b/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-css-colors-by-building-a-set-of-colored-markers/617bc3386dc7d07d6469bf20.md index 7ff37b68ba9..5c9e8e4ac1f 100644 --- a/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-css-colors-by-building-a-set-of-colored-markers/617bc3386dc7d07d6469bf20.md +++ b/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-css-colors-by-building-a-set-of-colored-markers/617bc3386dc7d07d6469bf20.md @@ -7,7 +7,7 @@ dashedName: step-32 # --description-- -Observe que, para criar laranja, você teve que aumentar a intensidade do vermelho e diminuir a intensidade dos valores `rgb` do verde. This is because orange is the combination of red and yellow. +Observe que, para criar laranja, você teve que aumentar a intensidade do vermelho e diminuir a intensidade dos valores `rgb` do verde. Isto ocorre porque laranja é a combinação entre vermelho e amarelo. Para criar a cor terciária verde da primavera, combine ciano com verde. Atualize a função `rgb` na regra do CSS `.two` para que o verde fique no valor máximo e azul tenha o valor de `127`. diff --git a/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfa22d1b521be39a3de7be0.md b/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfa22d1b521be39a3de7be0.md index 0c6df0574a2..8732c3f0768 100644 --- a/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfa22d1b521be39a3de7be0.md +++ b/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfa22d1b521be39a3de7be0.md @@ -7,9 +7,13 @@ dashedName: step-12 # --description-- -No passo anterior, você transformou as palavras `link to cat pictures` em um link, colocando-as entre as tags de abertura e fechamento de âncora (`a`). Você pode fazer o mesmo com as palavras dentro de um elemento, como em um elemento `p`. +Você pode transformar qualquer texto em um link, como o texto dentro de um elemento `p`. -No texto do elemento `p`, transforme as palavras `cat photos` em um link para `https://freecatphotoapp.com` adicionando as tags de abertura e fechamento de um elemento de âncora (`a`) ao redor dessas palavras. +``` html +Para mim, o freeCodeCamp é o máximo.
+``` + +No texto do elemento `p`, transforme as palavras `cat photos` em um link adicionando as tags de abertura e fechamento de um elemento de âncora (`a`) ao redor dessas palavras. Em seguida, defina o valor do atributo `href` como `https://freecatphotoapp.com/` # --hints-- diff --git a/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646c5d7057c45f432fcdd46c.md b/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646c5d7057c45f432fcdd46c.md index ee7511ff540..040e0a1b256 100644 --- a/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646c5d7057c45f432fcdd46c.md +++ b/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646c5d7057c45f432fcdd46c.md @@ -7,35 +7,35 @@ dashedName: step-7 # --description-- -Using a class selector, give the `.cat-head` element a width of `205px` and a height of `180px`. Also, give it a border of `1px solid #000` and a `border-radius` of `46%`. +Usando um seletor de classe, dê ao elemento `.cat-head` uma largura de `205px` e uma altura de `180px`. Além disso, dê a ele uma borda de `1px solid #000` e um `border-radius` de `46%`. # --hints-- -You should have a `.cat-head` selector. +Você deve ter um seletor `.cat-head`. ```js assert(new __helpers.CSSHelp(document)?.getStyle('.cat-head')) ``` -Your `.cat-head` selector should have a `width` set to `205px`. +O seletor `.cat-head` deve ter a propriedade `width` definida como `205px`. ```js assert(new __helpers.CSSHelp(document)?.getStyle('.cat-head')?.width === '205px'); ``` -Your `.cat-head` selector should have a `height` set to `180px`. +O seletor `.cat-head` deve ter a propriedade `height` definida como `180px`. ```js assert(new __helpers.CSSHelp(document)?.getStyle('.cat-head')?.height === '180px') ``` -Your `.cat-head` selector should have a `border` set to `1px solid #000`. +O seletor `.cat-head` deve ter a propriedade `border` definida para `1px solid #000`. ```js assert(new __helpers.CSSHelp(document)?.getStyle('.cat-head')?.border === '1px solid rgb(0, 0, 0)') ``` -Your `.cat-head` selector should have a `border-radius` set to `46%`. +O seletor `.cat-head` deve ter a propriedade `border-radius` definida como `46%`. ```js assert(new __helpers.CSSHelp(document)?.getStyle(".cat-head")?.borderRadius === '46%') diff --git a/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646ceb843412c74edee27a79.md b/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646ceb843412c74edee27a79.md index 30af3a1bb32..780bc9cd7e8 100644 --- a/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646ceb843412c74edee27a79.md +++ b/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646ceb843412c74edee27a79.md @@ -7,31 +7,31 @@ dashedName: step-23 # --description-- -You are going to make each ear look like a triangle. +Você vai fazer cada orelha parecer um triângulo. -Using a class selector, give the `.cat-left-ear` element a left and right border of `35px solid transparent` each. Also, set the bottom border to `70px solid #5e5e5e`. +Usando um seletor de classe, dê ao elemento `.cat-left-ear` uma borda esquerda e uma borda direita de `35px solid transparent`. Além disso, defina a borda inferior como `70px solid #5e5e5e`. # --hints-- -You should have a `.cat-left-ear` selector. +Você deve ter um seletor `.cat-left-ear`. ```js assert(new __helpers.CSSHelp(document).getStyle('.cat-left-ear')) ``` -Your `.cat-left-ear` selector should have a `border-left` property set to `35px solid transparent` +O seletor `.cat-left-ear` deve ter a propriedade `border-left` definida como `35px solid transparent`. ```js assert(new __helpers.CSSHelp(document).getStyle('.cat-left-ear')?.borderLeft === '35px solid transparent') ``` -Your `.cat-left-ear` selector should have a `border-right` property set to `35px solid transparent` +O seletor `.cat-left-ear` deve ter a propriedade `border-right` definida como `35px solid transparent`. ```js assert(new __helpers.CSSHelp(document).getStyle('.cat-left-ear')?.borderRight === '35px solid transparent') ``` -Your `.cat-left-ear` selector should have a `border-bottom` property set to `70px solid #5e5e5e` +O seletor `.cat-left-ear` deve ter a propriedade `border-bottom` definida como `70px solid #5e5e5e`. ```js assert(new __helpers.CSSHelp(document).getStyle('.cat-left-ear')?.borderBottom === '70px solid rgb(94, 94, 94)') diff --git a/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646cf2249f02ca5233d9af7c.md b/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646cf2249f02ca5233d9af7c.md index 7f4889505c1..3f5eb0ae49e 100644 --- a/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646cf2249f02ca5233d9af7c.md +++ b/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646cf2249f02ca5233d9af7c.md @@ -7,31 +7,31 @@ dashedName: step-27 # --description-- -Now you can work on the right ear of the cat. You have the HTML for it already. +Agora, você pode trabalhar com a orelha direita do gato. Você já tem o HTML para isso. -Using a class selector, give the `.cat-right-ear` element a left and right border of `35px solid transparent` each. Also, set the bottom border to `70px solid #5e5e5e`. +Usando um seletor de classe, dê ao elemento `.cat-right-ear` uma borda esquerda e uma borda direita de `35px solid transparent`. Além disso, defina a borda inferior como `70px solid #5e5e5e`. # --hints-- -You should have a `.cat-right-ear` selector. +Você deve ter um seletor `.cat-right-ear`. ```js assert(new __helpers.CSSHelp(document).getStyle('.cat-right-ear')) ``` -Your `.cat-right-ear` selector should have a `border-left` property set to `35px solid transparent`. +O seletor `.cat-right-ear` deve ter a propriedade `border-left` definida como `35px solid transparent`. ```js assert(new __helpers.CSSHelp(document).getStyle('.cat-right-ear')?.borderLeft === '35px solid transparent') ``` -Your `.cat-right-ear` selector should have a `border-right` property set to `35px solid transparent`. +O seletor `.cat-right-ear` deve ter a propriedade `border-right` definida como `35px solid transparent`. ```js assert(new __helpers.CSSHelp(document).getStyle('.cat-right-ear')?.borderRight === '35px solid transparent') ``` -Your `.cat-right-ear` selector should have a `border-bottom` property set to `70px solid #5e5e5e`. +O seletor `.cat-right-ear` deve ter a propriedade `border-bottom` definida como `70px solid #5e5e5e`. ```js assert(new __helpers.CSSHelp(document).getStyle('.cat-right-ear')?.borderBottom === '70px solid rgb(94, 94, 94)') diff --git a/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646cf48d8f8e1f535a1821d3.md b/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646cf48d8f8e1f535a1821d3.md index a62d50467b3..8e0da3b6bdd 100644 --- a/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646cf48d8f8e1f535a1821d3.md +++ b/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646cf48d8f8e1f535a1821d3.md @@ -7,23 +7,23 @@ dashedName: step-28 # --description-- -Move the right ear into position with a `position` property set to `absolute`, a `top` of `-26px`, and a `left` of `163px`. +Mova a orelha direita para o lugar com uma propriedade `position` definida como `absolute`, um `top` de `-26px` e um `left` de `163px`. # --hints-- -Your `.cat-right-ear` selector should have a `position` property set to `absolute`. Don't forget to add a semi-colon. +O seletor `.cat-right-ear` deve ter a propriedade `position` definida como `absolute`. Não se esqueça de adicionar um ponto e vírgula. ```js assert(new __helpers.CSSHelp(document).getStyle('.cat-right-ear')?.position === 'absolute') ``` -Your `.cat-right-ear` selector should have a `top` property set to `-26px` +O seletor `.cat-right-ear` deve ter a propriedade `top` definida como `-26px` ```js assert(new __helpers.CSSHelp(document).getStyle('.cat-right-ear')?.top === '-26px') ``` -Your `.cat-right-ear` selector should have a `left` property set to `163px` +O seletor `.cat-right-ear` deve ter a propriedade `left` definida como `163px` ```js assert(new __helpers.CSSHelp(document).getStyle('.cat-right-ear')?.left === '163px') diff --git a/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646cf6cbca98e258da65c979.md b/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646cf6cbca98e258da65c979.md index 6ba9ae87bca..438cb40aaf6 100644 --- a/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646cf6cbca98e258da65c979.md +++ b/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646cf6cbca98e258da65c979.md @@ -7,11 +7,11 @@ dashedName: step-29 # --description-- -As you did for the left ear, rotate the right ear at 45 degrees. +Assim como você fez com a orelha esquerda, gire a orelha direita em 45 graus. # --hints-- -You should set the `transform` property of your `.right-ear` element to `rotate(45deg)`. Don't forget to add a semi-colon. +Você deve definir o atributo `transform` do elemento `.right-ear` como `rotate(45deg)`. Não se esqueça de adicionar um ponto e vírgula. ```js assert(new __helpers.CSSHelp(document).getStyle('.cat-right-ear')?.transform === 'rotate(45deg)') diff --git a/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646cfde6ac612e5d60391f50.md b/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646cfde6ac612e5d60391f50.md index b449d8daeba..bc1bf0e4348 100644 --- a/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646cfde6ac612e5d60391f50.md +++ b/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646cfde6ac612e5d60391f50.md @@ -7,11 +7,11 @@ dashedName: step-33 # --description-- -Set the `z-index`property of the right ear to `1` so it always stays over the head. +Defina a propriedade `z-index` da orelha direita como `1` para que permaneça sempre acima da cabeça. # --hints-- -Your `.cat-right-ear` selector should have a `z-index` of `1`. Don't forget to add a semi-colon. +O seletor `.cat-right-ear` deve ter a propriedade `z-index` definida como `1`. Não se esqueça de adicionar um ponto e vírgula. ```js assert(new __helpers.CSSHelp(document).getStyle('.cat-right-ear')?.zIndex === '1') diff --git a/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646dd7cfd0cfac630c1dd520.md b/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646dd7cfd0cfac630c1dd520.md index f7d16417653..2a889a29042 100644 --- a/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646dd7cfd0cfac630c1dd520.md +++ b/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646dd7cfd0cfac630c1dd520.md @@ -7,29 +7,29 @@ dashedName: step-36 # --description-- -To remove all the pointed edges of the ear, set a bottom-right and bottom-left border radius of `40%` each, a top-left border radius of `90px`, and a top-right border radius of `10px`. +Para remover todas as bordas pontiagudas da orelha, defina um raio inferior direito e um raio inferior esquerdo da borda como `40%` cada, um raio da borda superior esquerdo como `90px` e um raio da borda superior direito como `10px`. # --hints-- -Your `.cat-left-inner-ear` selector should have a `border-bottom-right-radius` property set to `40%`. +O seletor `.cat-left-inner-ear` deve ter a propriedade `border-bottom-right-radius` definida como `40%`. ```js assert(new __helpers.CSSHelp(document).getStyle('.cat-left-inner-ear')?.borderBottomRightRadius === '40%') ``` -Your `.cat-left-inner-ear` selector should have a `border-bottom-left-radius` property set to `40%`. +O seletor `.cat-left-inner-ear` deve ter a propriedade `border-bottom-left-radius` definida como `40%`. ```js assert(new __helpers.CSSHelp(document).getStyle('.cat-left-inner-ear')?.borderBottomLeftRadius === '40%') ``` -Your `.cat-left-inner-ear` selector should have a `border-top-left-radius` property set to `90px`. +O seletor `.cat-left-inner-ear` deve ter a propriedade `border-top-left-radius` definida como `90px`. ```js assert(new __helpers.CSSHelp(document).getStyle('.cat-left-inner-ear')?.borderTopLeftRadius === '90px') ``` -Your `.cat-left-inner-ear` selector should have a `border-top-right-radius` property set to `10px`. +O seletor `.cat-left-inner-ear` deve ter a propriedade `border-top-right-radius` definida como `10px`. ```js assert(new __helpers.CSSHelp(document).getStyle('.cat-left-inner-ear')?.borderTopRightRadius === '10px') diff --git a/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646ddab8afd73764f5241bbf.md b/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646ddab8afd73764f5241bbf.md index 140ad189b35..0b83c60510a 100644 --- a/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646ddab8afd73764f5241bbf.md +++ b/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646ddab8afd73764f5241bbf.md @@ -7,17 +7,17 @@ dashedName: step-39 # --description-- -As you did for the left inner ear, remove the sharp edges of the right inner ear by setting a bottom-right and bottom-left border radius of `40%`, a top-left border radius of `90px`, and a top-right border radius of `10px`. +Assim como você fez com a orelha interna esquerda, remova as bordas pontiagudas da orelha interna direita definindo um raio inferior direito e um raio inferior esquerdo da borda como `40%`, um raio da borda superior esquerdo como `90px` e um raio da borda superior direito como `10px`. # --hints-- -Your `.cat-right-inner-ear` selector should have a `border-bottom-right-radius` property set to `40%`. +O seletor `.cat-right-inner-ear` deve ter a propriedade `border-bottom-right-radius` definida como `40%`. ```js assert(new __helpers.CSSHelp(document).getStyle('.cat-right-inner-ear')?.borderBottomRightRadius === '40%') ``` -Your `.cat-right-inner-ear` selector should have a `border-bottom-left-radius` property set to `40%`. +O seletor `.cat-right-inner-ear` deve ter a propriedade `border-bottom-left-radius` definida como `40%`. ```js assert(new __helpers.CSSHelp(document).getStyle('.cat-right-inner-ear')?.borderBottomLeftRadius === '40%') diff --git a/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646ddb61ff08366570cc5902.md b/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646ddb61ff08366570cc5902.md index 71027e56d31..ceb71357328 100644 --- a/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646ddb61ff08366570cc5902.md +++ b/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646ddb61ff08366570cc5902.md @@ -7,31 +7,31 @@ dashedName: step-40 # --description-- -You will now start working on the cat's eyes. Like the ears, the eyes will have inner eyes. +Agora, você vai começar a trabalhar com os olhos do gato. Assim como nas orelhas, os olhos terão uma parte interna. -Create a `div` element with the class `cat-eyes`. Inside the `cat-eyes` element, create two `div` elements with the class `cat-left-eye` and `cat-right-eye` respectively. +Crie um elemento `div` com a classe `cat-eyes`. Dentro do elemento `cat-eyes`, crie dois elementos `div` com a classe `cat-left-eye` e `cat-right-eye`, respectivamente. # --hints-- -You should create a `div` element with the class `cat-eyes`. +Você deve criar um elemento `div` com a classe `cat-eyes`. ```js assert(document.querySelectorAll('.cat-eyes').length === 1); ``` -You should create two `div` elements inside the `.cat-eyes` element. +Você deve ter dois elementos `div` dentro do elemento `.cat-eyes`. ```js assert(document.querySelectorAll('.cat-eyes div').length === 2); ``` -The first `div` element inside the `.cat-eyes` element should have the class `cat-left-eye`. +O primeiro elemento `div` dentro do elemento `.cat-eyes` deve ter a classe `cat-left-eye`. ```js assert(document.querySelectorAll('.cat-eyes div')[0].classList.contains('cat-left-eye')); ``` -The second `div` element inside the `.cat-eyes` element should have the class `cat-right-eye`. +O segundo elemento `div` dentro do elemento `.cat-eyes` deve ter a classe `cat-right-eye`. ```js assert(document.querySelectorAll('.cat-eyes div')[1].classList.contains('cat-right-eye')); diff --git a/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646dde7dc20dc167489faa69.md b/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646dde7dc20dc167489faa69.md index 514f2c3031c..ead26f2df38 100644 --- a/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646dde7dc20dc167489faa69.md +++ b/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646dde7dc20dc167489faa69.md @@ -7,29 +7,29 @@ dashedName: step-43 # --description-- -Using a class selector, give your `.cat-left-eye` element a `width` of `30px` and a `height` of `40px`. Also, give it a `background-color` of `#000`. +Usando um seletor de classe, dê ao elemento `.cat-left-eye` uma `width` de `30px` e uma `height` de `40px`. Além disso, dê a ele uma `background-color` de `#000`. # --hints-- -You should have a `.cat-left-eye` selector. +Você deve ter um seletor `.cat-left-eye`. ```js assert(new __helpers.CSSHelp(document).getStyle('.cat-left-eye')) ``` -Your `.cat-left-eye` selector should have a `width` set to `30px`. +O seletor `.cat-left-eye` deve ter a propriedade `width` definida como `30px`. ```js assert(new __helpers.CSSHelp(document).getStyle('.cat-left-eye')?.width === '30px') ``` -Your `.cat-left-eye` selector should have a `height` set to `40px`. +O seletor `.cat-left-eye` deve ter a propriedade `height` definida como `40px`. ```js assert(new __helpers.CSSHelp(document).getStyle('.cat-left-eye')?.height === '40px') ``` -Your `.cat-left-eye` selector should have a `background-color` set to `#000`. +O seletor `.cat-left-eye` deve ter a propriedade `background-color` definida como `#000`. ```js assert(new __helpers.CSSHelp(document).getStyle('.cat-left-eye')?.backgroundColor === 'rgb(0, 0, 0)') diff --git a/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646de8478d6f796bfbdccfb2.md b/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646de8478d6f796bfbdccfb2.md index 786a4c0b840..8bc6b1e4bbb 100644 --- a/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646de8478d6f796bfbdccfb2.md +++ b/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646de8478d6f796bfbdccfb2.md @@ -7,17 +7,17 @@ dashedName: step-48 # --description-- -To make the right eye look like an eye, give it a border radius of `60%`. Also, using the transform property, rotate it at `-25` degrees. +Para fazer o olho direito parecer um olho, dê a ele um raio de borda de `60%`. Além disso, usando a propriedade de transform, gire-o em `-25` graus. # --hints-- -Your `.cat-right-eye` selector should have a `border-radius` property set to `60%`. +O seletor `.cat-right-eye` deve ter a propriedade `border-radius` definida como `60%`. ```js assert(new __helpers.CSSHelp(document).getStyle('.cat-right-eye')?.borderRadius === '60%') ``` -Your `.cat-right-eye` selector should have a `transform` property set to `rotate(-25deg)`. +O seletor `.cat-right-eye` deve ter a propriedade `transform` definida como `rotate(-25deg)`. ```js assert(new __helpers.CSSHelp(document).getStyle('.cat-right-eye')?.transform === 'rotate(-25deg)') diff --git a/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646f0417322c0e04983a5149.md b/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646f0417322c0e04983a5149.md index 65cdf8346f5..6095b7093e7 100644 --- a/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646f0417322c0e04983a5149.md +++ b/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646f0417322c0e04983a5149.md @@ -7,29 +7,29 @@ dashedName: step-61 # --description-- -Using a class selector, give your `.cat-mouth-line-left` element a `position` of `absolute`, a `top` of `88px` and a `left` of `74px`. This would move it into the right position. +Usando um seletor de classe, dê ao elemento `.cat-mouth-line-left` uma `position` `absolute`, um `top` de `88px` e um `left` de `74px`. Isso o moverá para a posição certa. # --hints-- -You should have a `cat-mouth-line-left` selector. +Você deve ter um seletor `cat-mouth-line-left`. ```js assert(new __helpers.CSSHelp(document).getStyle('.cat-mouth-line-left')) ``` -Your `.cat-mouth-line-left` selector should have a `position` property set to `absolute`. +O seletor `.cat-mouth-line-left` deve ter a propriedade `position` definida como `absolute`. ```js assert(new __helpers.CSSHelp(document).getStyle('.cat-mouth-line-left')?.position === 'absolute') ``` -Your `.cat-mouth-line-left` selector should have a `top` property set to `88px`. +O seletor `.cat-mouth-line-left` deve ter a propriedade `top` definida como `88px`. ```js assert(new __helpers.CSSHelp(document).getStyle('.cat-mouth-line-left')?.top === '88px') ``` -Your `.cat-mouth-line-left` selector should have a `left` property set to `74px`. +O seletor `.cat-mouth-line-left` deve ter a propriedade `left` definida como `74px`. ```js assert(new __helpers.CSSHelp(document).getStyle('.cat-mouth-line-left')?.left === '74px') diff --git a/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646f102bf87b350b593baa72.md b/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646f102bf87b350b593baa72.md index ac5b5f2e1bd..51f8445dddf 100644 --- a/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646f102bf87b350b593baa72.md +++ b/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646f102bf87b350b593baa72.md @@ -7,35 +7,35 @@ dashedName: step-68 # --description-- -Inside the `.cat-whiskers-right` element, create 3 `div` elements with the class `cat-whisker-right-top`, `cat-whisker-right-middle`, and `cat-whisker-right-bottom`. +Dentro do elemento `.cat-whiskers-right`, crie 3 elementos `div` com as classes `cat-whisker-right-top`, `cat-whisker-right-middle` e `cat-whisker-right-bottom`. # --hints-- -You should not change the existing `div` element with class `cat-whiskers-right`. +Você não deve alterar o elemento `div` existente com a classe `cat-whiskers-right`. ```js assert(document.querySelectorAll('div.cat-whiskers-right').length === 1) ``` -You should create three `div` elements inside your `.cat-whiskers-right` element. +Você deve criar três elementos `div` dentro do elemento `.cat-whiskers-right`. ```js assert(document.querySelectorAll('.cat-whiskers-right div').length === 3) ``` -The first `div` element inside the `.cat-whiskers-right` element should have the class `cat-whisker-right-top`. +O primeiro elemento `div` dentro do elemento `.cat-whiskers-right` deve ter a classe `cat-whisker-right-top`. ```js assert(document.querySelectorAll('.cat-whiskers-right div')[0].classList.contains('cat-whisker-right-top')) ``` -The second `div` element inside the `.cat-whiskers-right` element should have the class `cat-whisker-right-middle`. +O segundo elemento `div` dentro do elemento `.cat-whiskers-right` deve ter a classe `cat-whisker-right-middle`. ```js assert(document.querySelectorAll('.cat-whiskers-right div')[1].classList.contains('cat-whisker-right-middle')) ``` -The third `div` element inside the `.cat-whiskers-right` element should have the class `cat-whisker-right-bottom`. +O terceiro elemento `div` dentro do elemento `.cat-whiskers-right` deve ter a classe `cat-whisker-right-bottom`. ```js assert(document.querySelectorAll('.cat-whiskers-right div')[2].classList.contains('cat-whisker-right-bottom')) diff --git a/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646f1764e2f1d212ba9785a7.md b/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646f1764e2f1d212ba9785a7.md index 8d5a2611eeb..d25f0249fd6 100644 --- a/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646f1764e2f1d212ba9785a7.md +++ b/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646f1764e2f1d212ba9785a7.md @@ -7,29 +7,29 @@ dashedName: step-75 # --description-- -Using a class selector, move the `.cat-whisker-left-bottom` into position with a `position` of `absolute`, a `top` of `134px`, and a `left` of `52px`. +Usando um seletor de classe, mova `.cat-whisker-left-bottom` para o lugar certo com uma `position` `absolute`, um `top` de `134px` e um `left` de `52px`. # --hints-- -You should have a `.cat-whisker-left-bottom` selector. +Você deve ter um seletor `.cat-whisker-left-bottom`. ```js assert(new __helpers.CSSHelp(document).getStyle('.cat-whisker-left-bottom')) ``` -Your `.cat-whisker-left-bottom` selector should have a `position` property set to `absolute`. +O seletor `.cat-whisker-left-bottom` deve ter a propriedade `position` definida como `absolute`. ```js assert(new __helpers.CSSHelp(document).getStyle('.cat-whisker-left-bottom')?.position === 'absolute') ``` -Your `.cat-whisker-left-bottom` selector should have a `top` property set to `134px`. +O seletor `.cat-whisker-left-bottom` deve ter a propriedade `top` definida como `134px`. ```js assert(new __helpers.CSSHelp(document).getStyle('.cat-whisker-left-bottom')?.top === '134px') ``` -Your `.cat-whisker-left-bottom` selector should have a `left` property set to `52px`. +O seletor `.cat-whisker-left-bottom` deve ter a propriedade `left` definida como `52px`. ```js assert(new __helpers.CSSHelp(document).getStyle('.cat-whisker-left-bottom')?.left === '52px') diff --git a/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646f4d6c42dc5f214f4e7444.md b/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646f4d6c42dc5f214f4e7444.md index d1423c28ae8..8e27f32a7b4 100644 --- a/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646f4d6c42dc5f214f4e7444.md +++ b/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646f4d6c42dc5f214f4e7444.md @@ -7,29 +7,29 @@ dashedName: step-77 # --description-- -Now you will work on moving the right whiskers into place. Use class selector to target the `.cat-whisker-right-top` element and give it a `position` of `absolute`, a `top` of `120px`, and a `left` of `109px`. +Agora, você moverá os bigodes da direita para o lugar certo. Use um seletor de classe que tenha como objetivo o elemento `.cat-whisker-right-top` e coloque-o no lugar com uma `position` `absolute`, um `top` de `120px` e um `left` de `109px`. # --hints-- -You should have a `.cat-whisker-right-top` selector. +Você deve ter um seletor `.cat-whisker-right-top`. ```js assert(new __helpers.CSSHelp(document).getStyle('.cat-whisker-right-top')) ``` -Your `.cat-whisker-right-top` selector should have a `position` property set to `absolute`. +O seletor `.cat-whisker-right-top` deve ter a propriedade `position` definida como `absolute`. ```js assert(new __helpers.CSSHelp(document).getStyle('.cat-whisker-right-top')?.position === 'absolute') ``` -Your `.cat-whisker-right-top` selector should have a `top` property set to `120px`. +O seletor `.cat-whisker-right-top` deve ter a propriedade `top` definida como `120px`. ```js assert(new __helpers.CSSHelp(document).getStyle('.cat-whisker-right-top')?.top === '120px') ``` -Your `.cat-whisker-right-top` selector should have a `left` property set to `109px`. +O seletor `.cat-whisker-right-top` deve ter a propriedade `left` definida como `109px`. ```js assert(new __helpers.CSSHelp(document).getStyle('.cat-whisker-right-top')?.left === '109px') diff --git a/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646f4f6a14e3c522d130a0d2.md b/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646f4f6a14e3c522d130a0d2.md index aec5e86af1d..2b3d7a1ac51 100644 --- a/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646f4f6a14e3c522d130a0d2.md +++ b/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/646f4f6a14e3c522d130a0d2.md @@ -7,29 +7,29 @@ dashedName: step-79 # --description-- -Use a class selector to target the `cat-whisker-right-middle` element, then move the right middle whisker into position with a `position` of `absolute`, a `top` of `127px`, and a `left` of `109px`. +Use um seletor de classe que tenha como objetivo o elemento `cat-whisker-right-middle` e coloque-o no lugar com uma `position` `absolute`, um `top` de `127px` e um `left` de `109px`. # --hints-- -You should have a `.cat-whisker-right-middle` selector. +Você deve ter um seletor `.cat-whisker-right-middle`. ```js assert(new __helpers.CSSHelp(document).getStyle('.cat-whisker-right-middle')) ``` -Your `.cat-whisker-right-middle` selector should have a `position` property set to `absolute`. +O seletor `.cat-whisker-right-middle` deve ter a propriedade `position` definida como `absolute`. ```js assert(new __helpers.CSSHelp(document).getStyle('.cat-whisker-right-middle')?.position === 'absolute') ``` -Your `.cat-whisker-right-middle` selector should have a `top` property set to `127px`. +O seletor `.cat-whisker-right-middle` deve ter a propriedade `top` definida como `127px`. ```js assert(new __helpers.CSSHelp(document).getStyle('.cat-whisker-right-middle')?.top === '127px') ``` -Your `.cat-whisker-right-middle` selector should have a `left` property set to `109px`. +O seletor `.cat-whisker-right-middle` deve ter a propriedade `left` definida como `109px`. ```js assert(new __helpers.CSSHelp(document).getStyle('.cat-whisker-right-middle')?.left === '109px') diff --git a/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/6476f5c17f99146071ee884c.md b/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/6476f5c17f99146071ee884c.md index dd58f7dc2f6..f4f7c79f524 100644 --- a/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/6476f5c17f99146071ee884c.md +++ b/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/6476f5c17f99146071ee884c.md @@ -11,7 +11,7 @@ You could see that nothing happens. The `.cat-head` element did not move despite When you use the `relative` value, the element is still positioned according to the normal flow of the document, but the `top`, `left`, `bottom`, and `right` values become active. -Instead of `static`, give you `.cat-head` a position of `relative`, and leave both `top` and `left` properties as they are. +Instead of `static`, give your `.cat-head` a position of `relative`, and leave both `top` and `left` properties as they are. # --hints-- diff --git a/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/647d821de0d97b3283c72b36.md b/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/647d821de0d97b3283c72b36.md index 84e6ab86a09..e995e593389 100644 --- a/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/647d821de0d97b3283c72b36.md +++ b/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/647d821de0d97b3283c72b36.md @@ -7,11 +7,11 @@ dashedName: step-18 # --description-- -Also, remove the `.box` CSS rule and its declarations because you don't need them anymore. +Além disso, remova a regra do CSS `.box` e suas declarações, pois você não precisa mais delas. # --hints-- -You should remove the `.box` css rule and all its values. +Você deve remover a regra do CSS `.box` e todos os seus valores. ```js assert.notMatch(code, /\.box\s*\{\s*width:\s*400px;\s*height:\s*600px;\s*background-color:\s*#000;\s*position:\s*absolute;\s*left:\s*650px;\s*top:\s*800px;?\s*\}\s*/) diff --git a/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/649353647c44ef4867ab4935.md b/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/649353647c44ef4867ab4935.md index fba89b981be..816f8abb56c 100644 --- a/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/649353647c44ef4867ab4935.md +++ b/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-intermediate-css-by-building-a-cat-painting/649353647c44ef4867ab4935.md @@ -7,11 +7,11 @@ dashedName: step-17 # --description-- -Remove the `div` element with class `box` because you don't need it anymore. +Remova o elemento `div` com a classe `box`, pois você não precisa mais dele. # --hints-- -You should remove the `div` element with class `box` +Você deve remover o elemento `div` com a classe `box` ```js assert.notMatch(code, /`. +As tags de abertura dizem ao navegador que este é o início de um elemento HTML. Elas são compostas por uma palavra-chave contida em sinais de menor e maior que <>. Por exemplo, uma tag de abertura de um parágrafo terá esta aparência: `
`. -Closing tags tell the browser where an element ends. They are almost the same as opening tags; the only difference is that they have a forward slash before the keyword. For example, a closing paragraph tag looks like this: `
`. +As tags de fechamento dizem ao navegador onde um elemento termina. Quase sempre, elas são iguais às tags de abertura. A única diferença está no fato de terem uma barra antes da palavra-chave. Por exemplo, uma tag de fechamento de um parágrafo terá esta aparência: ``. -A full paragraph element looks like this: +Um elemento de parágrafo completo terá esta aparência: -
+
-You can think of elements as containers for content. The opening and closing tags tell the browser what content the element contains. The browser can then use that information to determine how it should interpret and format the content.
+Você pode pensar em elementos como contêineres de conteúdo. As tags de abertura e fechamento informam ao navegador o conteúdo que o elemento contém. O navegador pode, então, usar essas informações para determinar como deve interpretar e formatar o conteúdo.
-There are some HTML elements that do not have a closing tag. These elements often look like this: ``. +As tags de abertura dizem ao navegador que este é o início de um elemento HTML. Elas são compostas por uma palavra-chave contida em sinais de menor e maior que <>. Por exemplo, uma tag de abertura de um parágrafo terá esta aparência: `
`. -Closing tags tell the browser where an element ends. They are almost the same as opening tags; the only difference is that they have a forward slash before the keyword. For example, a closing paragraph tag looks like this: `
`. +As tags de fechamento dizem ao navegador onde um elemento termina. Quase sempre, elas são iguais às tags de abertura. A única diferença está no fato de terem uma barra antes da palavra-chave. Por exemplo, uma tag de fechamento de um parágrafo terá esta aparência: ``. -A full paragraph element looks like this: +Um elemento de parágrafo completo terá esta aparência: -
+
-You can think of elements as containers for content. The opening and closing tags tell the browser what content the element contains. The browser can then use that information to determine how it should interpret and format the content.
+Você pode pensar em elementos como contêineres de conteúdo. As tags de abertura e fechamento informam ao navegador o conteúdo que o elemento contém. O navegador pode, então, usar essas informações para determinar como deve interpretar e formatar o conteúdo.
-There are some HTML elements that do not have a closing tag. These elements often look like this: `
```
-To break this down:
+Em detalhes:
-- First, you are going to the parent directory of the pages directory which is `odin-links-and-images`.
+- Primeiro, você vai ao diretório pai do diretório das páginas, que é o `odin-links-and-images`.
-- Then, from the parent directory, you can go into the `images` directory.
+- Em seguida, a partir do diretório pai, você pode ir para o diretório `images`.
-- Finally, you can access the `dog.jpg` file.
+- Por fim, você pode acessar o arquivo `dog.jpg`.
-Using the metaphor we used earlier, using `../` in a filepath is kind of like stepping out from the room you are currently in to the main hallway so you can go to another room.
+Usando a metáfora que usamos anteriormente, usar `../` em um caminho de arquivo é como sair do quarto em que você está no momento, indo para o corredor principal para que você possa chegar à sala.
-## `Alt` attribute
+## Atributo `Alt`
-Besides the `src` attribute, every image element should also have an `alt` (alternative text) attribute.
+Além do atributo `src`, cada elemento de imagem deve ter também um atributo `alt` (texto alternativo).
-The `alt` attribute is used to describe an image. It will be used in place of the image if it cannot be loaded. It is also used with screen readers to describe what the image is to visually impaired users.
+O atributo `alt` é usado para descrever uma imagem. Ele será usado no lugar da imagem, caso ela não possa ser carregada. Ele também é usado com leitores de tela para descrever a imagem para usuários com deficiência visual.
-This is how the The Odin Project logo example you used earlier looks with an `alt` attribute included:
-
+É assim que o logotipo do The Odin Project que você usou anteriormente fica com um atributo `alt` incluído:
+
# --question--
## --assignment--
-Watch Kevin Powell’s HTML Images Video above.
+Assista ao vídeo de Kevin Powell sobre imagens do HTML acima.
## --text--
-Which tag is used to display an image?
+Qual é a tag usada para exibir uma imagem?
## --answers--
diff --git a/curriculum/challenges/portuguese/16-the-odin-project/top-links-and-images/links-and-images-question-f.md b/curriculum/challenges/portuguese/16-the-odin-project/top-links-and-images/links-and-images-question-f.md
index e1af2d6a659..4dc78a87b31 100644
--- a/curriculum/challenges/portuguese/16-the-odin-project/top-links-and-images/links-and-images-question-f.md
+++ b/curriculum/challenges/portuguese/16-the-odin-project/top-links-and-images/links-and-images-question-f.md
@@ -1,31 +1,31 @@
---
id: 637f701c72c65bc8e73dfe31
-title: Links and Images Question F
+title: Questão F de Links e imagens
challengeType: 15
dashedName: links-and-images-question-f
---
# --description--
-Websites would be fairly boring if they could only display text. Luckily HTML provides a wide variety of elements for displaying all sorts of different media. The most widely used of these is the image element.
+Os sites da web seriam muito chatos se apenas pudessem exibir texto. Felizmente, o HTML fornece uma grande variedade de elementos para exibir todos os tipos diferentes de mídias. O mais utilizado é o elemento de imagem.
-To display an image in HTML you use the `
```
-To break this down:
+Em detalhes:
-- First, you are going to the parent directory of the pages directory which is `odin-links-and-images`.
+- Primeiro, você vai ao diretório pai do diretório das páginas, que é o `odin-links-and-images`.
-- Then, from the parent directory, you can go into the `images` directory.
+- Em seguida, a partir do diretório pai, você pode ir para o diretório `images`.
-- Finally, you can access the `dog.jpg` file.
+- Por fim, você pode acessar o arquivo `dog.jpg`.
-Using the metaphor we used earlier, using `../` in a filepath is kind of like stepping out from the room you are currently in to the main hallway so you can go to another room.
+Usando a metáfora que usamos anteriormente, usar `../` em um caminho de arquivo é como sair do quarto em que você está no momento, indo para o corredor principal para que você possa chegar à sala.
-## Alt attribute
+## Atributo alt
-Besides the `src` attribute, every image element should also have an `alt` (alternative text) attribute.
+Além do atributo `src`, cada elemento de imagem deve ter também um atributo `alt` (texto alternativo).
-The `alt` attribute is used to describe an image. It will be used in place of the image if it cannot be loaded. It is also used with screen readers to describe what the image is to visually impaired users.
+O atributo `alt` é usado para descrever uma imagem. Ele será usado no lugar da imagem, caso ela não possa ser carregada. Ele também é usado com leitores de tela para descrever a imagem para usuários com deficiência visual.
-This is how the The Odin Project logo example you used earlier looks with an alt attribute included:
-
+É assim que o logotipo do The Odin Project que você usou anteriormente fica com um atributo alt incluído:
+
# --question--
## --text--
-What two attributes do images always need to have?
+Quais são os dois atributos que as imagens sempre precisam ter?
## --answers--
-`href` and `alt`
+`href` e `alt`
---
-`name` and `href`
+`name` e `href`
---
-`alt` and `src`
+`alt` e `src`
## --video-solution--
diff --git a/curriculum/challenges/portuguese/16-the-odin-project/top-links-and-images/links-and-images-question-g.md b/curriculum/challenges/portuguese/16-the-odin-project/top-links-and-images/links-and-images-question-g.md
index 5bc84fa6c96..9d78d96be23 100644
--- a/curriculum/challenges/portuguese/16-the-odin-project/top-links-and-images/links-and-images-question-g.md
+++ b/curriculum/challenges/portuguese/16-the-odin-project/top-links-and-images/links-and-images-question-g.md
@@ -1,31 +1,31 @@
---
id: 637f701572c65bc8e73dfe30
-title: Links and Images Question G
+title: Questão G de Links e imagens
challengeType: 15
dashedName: links-and-images-question-g
---
# --description--
-Websites would be fairly boring if they could only display text. Luckily HTML provides a wide variety of elements for displaying all sorts of different media. The most widely used of these is the image element.
+Os sites da web seriam muito chatos se apenas pudessem exibir texto. Felizmente, o HTML fornece uma grande variedade de elementos para exibir todos os tipos diferentes de mídias. O mais utilizado é o elemento de imagem.
-To display an image in HTML you use the `
```
-To break this down:
+Em detalhes:
-- First, you are going to the parent directory of the pages directory which is `odin-links-and-images`.
+- Primeiro, você vai ao diretório pai do diretório das páginas, que é o `odin-links-and-images`.
-- Then, from the parent directory, you can go into the `images` directory.
+- Em seguida, a partir do diretório pai, você pode ir para o diretório `images`.
-- Finally, you can access the `dog.jpg` file.
+- Por fim, você pode acessar o arquivo `dog.jpg`.
-Using the metaphor we used earlier, using `../` in a filepath is kind of like stepping out from the room you are currently in to the main hallway so you can go to another room.
+Usando a metáfora que usamos anteriormente, usar `../` em um caminho de arquivo é como sair do quarto em que você está no momento, indo para o corredor principal para que você possa chegar à sala.
-## Alt attribute
+## Atributo alt
-Besides the `src` attribute, every image element should also have an `alt` (alternative text) attribute.
+Além do atributo `src`, cada elemento de imagem deve ter também um atributo `alt` (texto alternativo).
-The `alt` attribute is used to describe an image. It will be used in place of the image if it cannot be loaded. It is also used with screen readers to describe what the image is to visually impaired users.
+O atributo `alt` é usado para descrever uma imagem. Ele será usado no lugar da imagem, caso ela não possa ser carregada. Ele também é usado com leitores de tela para descrever a imagem para usuários com deficiência visual.
-This is how the The Odin Project logo example you used earlier looks with an alt attribute included:
-
+É assim que o logotipo do The Odin Project que você usou anteriormente fica com um atributo alt incluído:
+
# --question--
## --text--
-How do you access a parent directory in a filepath?
+Como você acessa um diretório pai em um caminho de arquivo?
## --answers--
diff --git a/curriculum/challenges/portuguese/16-the-odin-project/top-links-and-images/links-and-images-question-h.md b/curriculum/challenges/portuguese/16-the-odin-project/top-links-and-images/links-and-images-question-h.md
index 71157081ae7..ad335cec674 100644
--- a/curriculum/challenges/portuguese/16-the-odin-project/top-links-and-images/links-and-images-question-h.md
+++ b/curriculum/challenges/portuguese/16-the-odin-project/top-links-and-images/links-and-images-question-h.md
@@ -1,31 +1,31 @@
---
id: 637f700b72c65bc8e73dfe2f
-title: Links and Images Question H
+title: Questão H de Links e imagens
challengeType: 15
dashedName: links-and-images-question-h
---
# --description--
-Websites would be fairly boring if they could only display text. Luckily HTML provides a wide variety of elements for displaying all sorts of different media. The most widely used of these is the image element.
+Os sites da web seriam muito chatos se apenas pudessem exibir texto. Felizmente, o HTML fornece uma grande variedade de elementos para exibir todos os tipos diferentes de mídias. O mais utilizado é o elemento de imagem.
-To display an image in HTML you use the `
```
-To break this down:
+Em detalhes:
-- First, you are going to the parent directory of the pages directory which is `odin-links-and-images`.
+- Primeiro, você vai ao diretório pai do diretório das páginas, que é o `odin-links-and-images`.
-- Then, from the parent directory, you can go into the `images` directory.
+- Em seguida, a partir do diretório pai, você pode ir para o diretório `images`.
-- Finally, you can access the `dog.jpg` file.
+- Por fim, você pode acessar o arquivo `dog.jpg`.
-Using the metaphor we used earlier, using `../` in a filepath is kind of like stepping out from the room you are currently in to the main hallway so you can go to another room.
+Usando a metáfora que usamos anteriormente, usar `../` em um caminho de arquivo é como sair do quarto em que você está no momento, indo para o corredor principal para que você possa chegar à sala.
-## Alt attribute
+## Atributo alt
-Besides the `src` attribute, every image element should also have an `alt` (alternative text) attribute.
+Além do atributo `src`, cada elemento de imagem deve ter também um atributo `alt` (texto alternativo).
-The `alt` attribute is used to describe an image. It will be used in place of the image if it cannot be loaded. It is also used with screen readers to describe what the image is to visually impaired users.
+O atributo `alt` é usado para descrever uma imagem. Ele será usado no lugar da imagem, caso ela não possa ser carregada. Ele também é usado com leitores de tela para descrever a imagem para usuários com deficiência visual.
-This is how the The Odin Project logo example you used earlier looks with an alt attribute included:
-
+É assim que o logotipo do The Odin Project que você usou anteriormente fica com um atributo alt incluído:
+
# --question--
## --assignment--
-Read about the four main image formats that can be used on the web.
+Leia sobre os quatro formatos principais de imagens que podem ser usados na web.
## --text--
-What are the four main image formats that you can use for images on the web?
+Quais são os quatro formatos principais de imagens que você pode usar na web?
## --answers--
-TIFF, GIF, PNG, and SVG.
+TIFF, GIF, PNG e SVG.
---
-JPG, PNG, GIF, and SVG.
+JPG, PNG, GIF e SVG.
---
-JPG, PDF, SVG, and GIF.
+JPG, PDF, SVG e GIF.
## --video-solution--
diff --git a/curriculum/challenges/portuguese/16-the-odin-project/top-working-with-text/working-with-text-question-a.md b/curriculum/challenges/portuguese/16-the-odin-project/top-working-with-text/working-with-text-question-a.md
index 8698b62aca8..d0025cd38a7 100644
--- a/curriculum/challenges/portuguese/16-the-odin-project/top-working-with-text/working-with-text-question-a.md
+++ b/curriculum/challenges/portuguese/16-the-odin-project/top-working-with-text/working-with-text-question-a.md
@@ -1,14 +1,14 @@
---
id: 637f4e5872c65bc8e73dfe27
videoId: yqcd-XkxZNM
-title: Working With Text Question A
+title: Questão A de Trabalhando com textos
challengeType: 15
dashedName: working-with-text-question-a
---
# --description--
-What would you expect the following text to output on an HTML page?
+O que você esperaria que o seguinte texto exibisse em uma página HTML?
```html
@@ -20,27 +20,27 @@ What would you expect the following text to output on an HTML page?
```
-It looks like two paragraphs of text, and so you might expect it to display in that way. However that is not the case, as you can see in the output below:
+Parece que há dois parágrafos do texto. Ou seja, pode-se esperar que sejam exibidos desse modo. No entanto, esse não é o caso, como você pode ver pelo resultado abaixo:
-
+
-When the browser encounters new lines like this in your HTML, it will compress them down into one single space. The result of this compression is that all of the text is clumped together into one long line.
+Quando o navegador encontrar novas linhas como essa em seu HTML, ele as comprimirá em um único espaço. O resultado desta compressão é que todo o texto é colocado em uma única linha.
-If you want to create paragraphs in HTML, you need to use the paragraph element, which will add a newline after each of your paragraphs. A paragraph element is defined by wrapping text content with a `` tag. +Se quiser criar parágrafos em HTML, é preciso utilizar o elemento de parágrafo, que acrescentará uma nova linha após cada um dos parágrafos. Um elemento de parágrafo é definido envolvendo o conteúdo do texto com uma tag `
`. -Changing our example from before to use paragraph elements fixes the issue: +Ao mudar nosso exemplo de antes para usar elementos dos parágrafos, corrigimos o problema: - + # --question-- -## --assignment-- +## --atividade -Watch and follow along to Kevin Powell’s HTML Paragraph and Headings Video above. +Assista o vídeo de Kevin Powell sobre Parágrafos e títulos do HTML acima. ## --text-- -How do you create a paragraph in HTML? +Como se cria um parágrafo em HTML? ## --answers-- diff --git a/curriculum/challenges/portuguese/16-the-odin-project/top-working-with-text/working-with-text-question-b.md b/curriculum/challenges/portuguese/16-the-odin-project/top-working-with-text/working-with-text-question-b.md index 17d3c900359..238bc9d802d 100644 --- a/curriculum/challenges/portuguese/16-the-odin-project/top-working-with-text/working-with-text-question-b.md +++ b/curriculum/challenges/portuguese/16-the-odin-project/top-working-with-text/working-with-text-question-b.md @@ -1,38 +1,38 @@ --- id: 637f4e5f72c65bc8e73dfe28 -title: Working With Text Question B +title: Questão B de Trabalhando com textos challengeType: 15 dashedName: working-with-text-question-b --- # --description-- -Headings are different from other HTML text elements: they are displayed larger and bolder than other text to signify that they are headings. +Títulos são diferentes de outros elementos de texto do HTML: eles são exibidos maiores e com a fonte mais forte do que outros textos para representar que são títulos. -There are 6 different levels of headings starting from `