mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-01-05 12:06:36 -05:00
chore(i18n,learn): processed translations (#51481)
This commit is contained in:
@@ -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()` واحد أو أكثر من <dfn>الوسائط</dfn> و "تدفعها" إلى نهاية القائمة.
|
||||
The `push()` method takes one or more <dfn>arguments</dfn> 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--
|
||||
|
||||
|
||||
@@ -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
|
||||
<p>I think <a href="https://www.freecodecamp.org/">freeCodeCamp</a> is great.</p>
|
||||
```
|
||||
|
||||
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--
|
||||
|
||||
@@ -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--
|
||||
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/csharp-do-while/" target="_blank">https://learn.microsoft.com/training/modules/csharp-do-while/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-do-while/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-do-while/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/csharp-switch-case/" target="_blank">https://learn.microsoft.com/training/modules/csharp-switch-case/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-switch-case/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-switch-case/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/challenge-project-develop-branching-looping-structures-c-sharp/" target="_blank">https://learn.microsoft.com/training/modules/challenge-project-develop-branching-looping-structures-c-sharp/</a> 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 <a href="https://learn.microsoft.com/training/modules/challenge-project-develop-branching-looping-structures-c-sharp/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/challenge-project-develop-branching-looping-structures-c-sharp/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/csharp-code-blocks/" target="_blank">https://learn.microsoft.com/training/modules/csharp-code-blocks/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-code-blocks/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-code-blocks/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/csharp-evaluate-boolean-expressions/" target="_blank">https://learn.microsoft.com/training/modules/csharp-evaluate-boolean-expressions/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-evaluate-boolean-expressions/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-evaluate-boolean-expressions/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/guided-project-develop-conditional-branching-looping/" target="_blank">https://learn.microsoft.com/training/modules/guided-project-develop-conditional-branching-looping/</a> 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 <a href="https://learn.microsoft.com/training/modules/guided-project-develop-conditional-branching-looping/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/guided-project-develop-conditional-branching-looping/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/csharp-for/" target="_blank">https://learn.microsoft.com/training/modules/csharp-for/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-for/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-for/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/users/me/achievements#trophies-section" target="_blank" rel="noreferrer">your achievements page</a>, 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.
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/csharp-if-elseif-else/" target="_blank">https://learn.microsoft.com/training/modules/csharp-if-elseif-else/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-if-elseif-else/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-if-elseif-else/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/csharp-call-methods/" target="_blank">https://learn.microsoft.com/training/modules/csharp-call-methods/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-call-methods/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-call-methods/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/challenge-project-arrays-iteration-selection/" target="_blank">https://learn.microsoft.com/training/modules/challenge-project-arrays-iteration-selection/</a> 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 <a href="https://learn.microsoft.com/training/modules/challenge-project-arrays-iteration-selection/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/challenge-project-arrays-iteration-selection/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/csharp-readable-code/" target="_blank">https://learn.microsoft.com/training/modules/csharp-readable-code/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-readable-code/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-readable-code/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/guided-project-arrays-iteration-selection/" target="_blank">https://learn.microsoft.com/training/modules/guided-project-arrays-iteration-selection/</a> 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 <a href="https://learn.microsoft.com/training/modules/guided-project-arrays-iteration-selection/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/guided-project-arrays-iteration-selection/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/install-configure-visual-studio-code/" target="_blank">https://learn.microsoft.com/training/modules/install-configure-visual-studio-code/</a> 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 <a href="https://learn.microsoft.com/training/modules/install-configure-visual-studio-code/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/install-configure-visual-studio-code/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/csharp-arrays/" target="_blank">https://learn.microsoft.com/training/modules/csharp-arrays/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-arrays/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-arrays/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/users/me/achievements#trophies-section" target="_blank" rel="noreferrer">your achievements page</a>, 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.
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/challenge-project-create-mini-game/" target="_blank">https://learn.microsoft.com/training/modules/challenge-project-create-mini-game/</a> 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 <a href="https://learn.microsoft.com/training/modules/challenge-project-create-mini-game/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/challenge-project-create-mini-game/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/create-c-sharp-methods-return-values/" target="_blank">https://learn.microsoft.com/training/modules/create-c-sharp-methods-return-values/</a> 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 <a href="https://learn.microsoft.com/training/modules/create-c-sharp-methods-return-values/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/create-c-sharp-methods-return-values/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/create-c-sharp-methods-parameters/" target="_blank">https://learn.microsoft.com/training/modules/create-c-sharp-methods-parameters/</a> 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 <a href="https://learn.microsoft.com/training/modules/create-c-sharp-methods-parameters/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/create-c-sharp-methods-parameters/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/guided-project-visit-petting-zoo/" target="_blank">https://learn.microsoft.com/training/modules/guided-project-visit-petting-zoo/</a> 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 <a href="https://learn.microsoft.com/training/modules/guided-project-visit-petting-zoo/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/guided-project-visit-petting-zoo/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/users/me/achievements#trophies-section" target="_blank" rel="noreferrer">your achievements page</a>, 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.
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/write-first-c-sharp-method/" target="_blank">https://learn.microsoft.com/training/modules/write-first-c-sharp-method/</a> 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 <a href="https://learn.microsoft.com/training/modules/write-first-c-sharp-method/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/write-first-c-sharp-method/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/challenge-project-debug-c-sharp-console-application/" target="_blank">https://learn.microsoft.com/training/modules/challenge-project-debug-c-sharp-console-application/</a> 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 <a href="https://learn.microsoft.com/training/modules/challenge-project-debug-c-sharp-console-application/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/challenge-project-debug-c-sharp-console-application/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/create-throw-exceptions-c-sharp/" target="_blank">https://learn.microsoft.com/training/modules/create-throw-exceptions-c-sharp/</a> 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 <a href="https://learn.microsoft.com/training/modules/create-throw-exceptions-c-sharp/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/create-throw-exceptions-c-sharp/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/guided-project-debug-handle-exceptions-c-sharp-console-application/" target="_blank">https://learn.microsoft.com/training/modules/guided-project-debug-handle-exceptions-c-sharp-console-application/</a> 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 <a href="https://learn.microsoft.com/training/modules/guided-project-debug-handle-exceptions-c-sharp-console-application/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/guided-project-debug-handle-exceptions-c-sharp-console-application/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/implement-exception-handling-c-sharp/" target="_blank">https://learn.microsoft.com/training/modules/implement-exception-handling-c-sharp/</a> 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 <a href="https://learn.microsoft.com/training/modules/implement-exception-handling-c-sharp/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/implement-exception-handling-c-sharp/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/implement-visual-studio-code-debugging-tools/" target="_blank">https://learn.microsoft.com/training/modules/implement-visual-studio-code-debugging-tools/</a> 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 <a href="https://learn.microsoft.com/training/modules/implement-visual-studio-code-debugging-tools/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/implement-visual-studio-code-debugging-tools/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/review-principles-code-debugging-exception-handling-c-sharp/" target="_blank">https://learn.microsoft.com/training/modules/review-principles-code-debugging-exception-handling-c-sharp/</a> 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 <a href="https://learn.microsoft.com/training/modules/review-principles-code-debugging-exception-handling-c-sharp/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/review-principles-code-debugging-exception-handling-c-sharp/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/users/me/achievements#trophies-section" target="_blank" rel="noreferrer">your achievements page</a>, 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.
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/challenge-project-work-variable-data-c-sharp/" target="_blank">https://learn.microsoft.com/training/modules/challenge-project-work-variable-data-c-sharp/</a> 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 <a href="https://learn.microsoft.com/training/modules/challenge-project-work-variable-data-c-sharp/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/challenge-project-work-variable-data-c-sharp/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/csharp-choose-data-type/" target="_blank">https://learn.microsoft.com/training/modules/csharp-choose-data-type/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-choose-data-type/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-choose-data-type/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/csharp-convert-cast/" target="_blank">https://learn.microsoft.com/training/modules/csharp-convert-cast/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-convert-cast/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-convert-cast/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/csharp-format-strings/" target="_blank">https://learn.microsoft.com/training/modules/csharp-format-strings/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-format-strings/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-format-strings/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/guided-project-work-variable-data-c-sharp/" target="_blank">https://learn.microsoft.com/training/modules/guided-project-work-variable-data-c-sharp/</a> 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 <a href="https://learn.microsoft.com/training/modules/guided-project-work-variable-data-c-sharp/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/guided-project-work-variable-data-c-sharp/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/csharp-modify-content/" target="_blank">https://learn.microsoft.com/training/modules/csharp-modify-content/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-modify-content/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-modify-content/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/csharp-arrays-operations/" target="_blank">https://learn.microsoft.com/training/modules/csharp-arrays-operations/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-arrays-operations/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-arrays-operations/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/users/me/achievements#trophies-section" target="_blank" rel="noreferrer">your achievements page</a>, 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.
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/guided-project-calculate-print-student-grades/" target="_blank">https://learn.microsoft.com/training/modules/guided-project-calculate-print-student-grades/</a> 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 <a href="https://learn.microsoft.com/training/modules/guided-project-calculate-print-student-grades/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/guided-project-calculate-print-student-grades/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/guided-project-calculate-final-gpa/" target="_blank">https://learn.microsoft.com/training/modules/guided-project-calculate-final-gpa/</a> 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 <a href="https://learn.microsoft.com/training/modules/guided-project-calculate-final-gpa/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/guided-project-calculate-final-gpa/</a> 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`?
|
||||
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/csharp-basic-operations/" target="_blank">https://learn.microsoft.com/training/modules/csharp-basic-operations/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-basic-operations/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-basic-operations/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/csharp-basic-formatting/" target="_blank">https://learn.microsoft.com/training/modules/csharp-basic-formatting/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-basic-formatting/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-basic-formatting/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/csharp-literals-variables/" target="_blank">https://learn.microsoft.com/training/modules/csharp-literals-variables/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-literals-variables/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-literals-variables/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/users/me/achievements#trophies-section" target="_blank" rel="noreferrer">your achievements page</a>, 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.
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/csharp-write-first/" target="_blank">https://learn.microsoft.com/training/modules/csharp-write-first/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-write-first/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-write-first/</a> 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--
|
||||
|
||||
@@ -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()` 接受一個或多個參數(<dfn>parameters</dfn>),並把它壓入到數組的末尾。
|
||||
The `push()` method takes one or more <dfn>arguments</dfn> 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--
|
||||
|
||||
|
||||
@@ -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
|
||||
<p>I think <a href="https://www.freecodecamp.org/">freeCodeCamp</a> is great.</p>
|
||||
```
|
||||
|
||||
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--
|
||||
|
||||
@@ -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--
|
||||
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/csharp-do-while/" target="_blank">https://learn.microsoft.com/training/modules/csharp-do-while/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-do-while/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-do-while/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/csharp-switch-case/" target="_blank">https://learn.microsoft.com/training/modules/csharp-switch-case/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-switch-case/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-switch-case/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/challenge-project-develop-branching-looping-structures-c-sharp/" target="_blank">https://learn.microsoft.com/training/modules/challenge-project-develop-branching-looping-structures-c-sharp/</a> 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 <a href="https://learn.microsoft.com/training/modules/challenge-project-develop-branching-looping-structures-c-sharp/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/challenge-project-develop-branching-looping-structures-c-sharp/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/csharp-code-blocks/" target="_blank">https://learn.microsoft.com/training/modules/csharp-code-blocks/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-code-blocks/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-code-blocks/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/csharp-evaluate-boolean-expressions/" target="_blank">https://learn.microsoft.com/training/modules/csharp-evaluate-boolean-expressions/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-evaluate-boolean-expressions/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-evaluate-boolean-expressions/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/guided-project-develop-conditional-branching-looping/" target="_blank">https://learn.microsoft.com/training/modules/guided-project-develop-conditional-branching-looping/</a> 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 <a href="https://learn.microsoft.com/training/modules/guided-project-develop-conditional-branching-looping/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/guided-project-develop-conditional-branching-looping/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/csharp-for/" target="_blank">https://learn.microsoft.com/training/modules/csharp-for/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-for/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-for/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/users/me/achievements#trophies-section" target="_blank" rel="noreferrer">your achievements page</a>, 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.
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/csharp-if-elseif-else/" target="_blank">https://learn.microsoft.com/training/modules/csharp-if-elseif-else/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-if-elseif-else/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-if-elseif-else/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/csharp-call-methods/" target="_blank">https://learn.microsoft.com/training/modules/csharp-call-methods/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-call-methods/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-call-methods/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/challenge-project-arrays-iteration-selection/" target="_blank">https://learn.microsoft.com/training/modules/challenge-project-arrays-iteration-selection/</a> 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 <a href="https://learn.microsoft.com/training/modules/challenge-project-arrays-iteration-selection/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/challenge-project-arrays-iteration-selection/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/csharp-readable-code/" target="_blank">https://learn.microsoft.com/training/modules/csharp-readable-code/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-readable-code/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-readable-code/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/guided-project-arrays-iteration-selection/" target="_blank">https://learn.microsoft.com/training/modules/guided-project-arrays-iteration-selection/</a> 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 <a href="https://learn.microsoft.com/training/modules/guided-project-arrays-iteration-selection/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/guided-project-arrays-iteration-selection/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/install-configure-visual-studio-code/" target="_blank">https://learn.microsoft.com/training/modules/install-configure-visual-studio-code/</a> 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 <a href="https://learn.microsoft.com/training/modules/install-configure-visual-studio-code/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/install-configure-visual-studio-code/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/csharp-arrays/" target="_blank">https://learn.microsoft.com/training/modules/csharp-arrays/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-arrays/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-arrays/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/users/me/achievements#trophies-section" target="_blank" rel="noreferrer">your achievements page</a>, 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.
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/challenge-project-create-mini-game/" target="_blank">https://learn.microsoft.com/training/modules/challenge-project-create-mini-game/</a> 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 <a href="https://learn.microsoft.com/training/modules/challenge-project-create-mini-game/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/challenge-project-create-mini-game/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/create-c-sharp-methods-return-values/" target="_blank">https://learn.microsoft.com/training/modules/create-c-sharp-methods-return-values/</a> 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 <a href="https://learn.microsoft.com/training/modules/create-c-sharp-methods-return-values/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/create-c-sharp-methods-return-values/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/create-c-sharp-methods-parameters/" target="_blank">https://learn.microsoft.com/training/modules/create-c-sharp-methods-parameters/</a> 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 <a href="https://learn.microsoft.com/training/modules/create-c-sharp-methods-parameters/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/create-c-sharp-methods-parameters/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/guided-project-visit-petting-zoo/" target="_blank">https://learn.microsoft.com/training/modules/guided-project-visit-petting-zoo/</a> 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 <a href="https://learn.microsoft.com/training/modules/guided-project-visit-petting-zoo/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/guided-project-visit-petting-zoo/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/users/me/achievements#trophies-section" target="_blank" rel="noreferrer">your achievements page</a>, 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.
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/write-first-c-sharp-method/" target="_blank">https://learn.microsoft.com/training/modules/write-first-c-sharp-method/</a> 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 <a href="https://learn.microsoft.com/training/modules/write-first-c-sharp-method/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/write-first-c-sharp-method/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/challenge-project-debug-c-sharp-console-application/" target="_blank">https://learn.microsoft.com/training/modules/challenge-project-debug-c-sharp-console-application/</a> 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 <a href="https://learn.microsoft.com/training/modules/challenge-project-debug-c-sharp-console-application/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/challenge-project-debug-c-sharp-console-application/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/create-throw-exceptions-c-sharp/" target="_blank">https://learn.microsoft.com/training/modules/create-throw-exceptions-c-sharp/</a> 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 <a href="https://learn.microsoft.com/training/modules/create-throw-exceptions-c-sharp/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/create-throw-exceptions-c-sharp/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/guided-project-debug-handle-exceptions-c-sharp-console-application/" target="_blank">https://learn.microsoft.com/training/modules/guided-project-debug-handle-exceptions-c-sharp-console-application/</a> 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 <a href="https://learn.microsoft.com/training/modules/guided-project-debug-handle-exceptions-c-sharp-console-application/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/guided-project-debug-handle-exceptions-c-sharp-console-application/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/implement-exception-handling-c-sharp/" target="_blank">https://learn.microsoft.com/training/modules/implement-exception-handling-c-sharp/</a> 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 <a href="https://learn.microsoft.com/training/modules/implement-exception-handling-c-sharp/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/implement-exception-handling-c-sharp/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/implement-visual-studio-code-debugging-tools/" target="_blank">https://learn.microsoft.com/training/modules/implement-visual-studio-code-debugging-tools/</a> 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 <a href="https://learn.microsoft.com/training/modules/implement-visual-studio-code-debugging-tools/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/implement-visual-studio-code-debugging-tools/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/review-principles-code-debugging-exception-handling-c-sharp/" target="_blank">https://learn.microsoft.com/training/modules/review-principles-code-debugging-exception-handling-c-sharp/</a> 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 <a href="https://learn.microsoft.com/training/modules/review-principles-code-debugging-exception-handling-c-sharp/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/review-principles-code-debugging-exception-handling-c-sharp/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/users/me/achievements#trophies-section" target="_blank" rel="noreferrer">your achievements page</a>, 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.
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/challenge-project-work-variable-data-c-sharp/" target="_blank">https://learn.microsoft.com/training/modules/challenge-project-work-variable-data-c-sharp/</a> 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 <a href="https://learn.microsoft.com/training/modules/challenge-project-work-variable-data-c-sharp/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/challenge-project-work-variable-data-c-sharp/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/csharp-choose-data-type/" target="_blank">https://learn.microsoft.com/training/modules/csharp-choose-data-type/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-choose-data-type/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-choose-data-type/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/csharp-convert-cast/" target="_blank">https://learn.microsoft.com/training/modules/csharp-convert-cast/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-convert-cast/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-convert-cast/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/csharp-format-strings/" target="_blank">https://learn.microsoft.com/training/modules/csharp-format-strings/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-format-strings/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-format-strings/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/guided-project-work-variable-data-c-sharp/" target="_blank">https://learn.microsoft.com/training/modules/guided-project-work-variable-data-c-sharp/</a> 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 <a href="https://learn.microsoft.com/training/modules/guided-project-work-variable-data-c-sharp/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/guided-project-work-variable-data-c-sharp/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/csharp-modify-content/" target="_blank">https://learn.microsoft.com/training/modules/csharp-modify-content/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-modify-content/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-modify-content/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/csharp-arrays-operations/" target="_blank">https://learn.microsoft.com/training/modules/csharp-arrays-operations/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-arrays-operations/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-arrays-operations/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/users/me/achievements#trophies-section" target="_blank" rel="noreferrer">your achievements page</a>, 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.
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/guided-project-calculate-print-student-grades/" target="_blank">https://learn.microsoft.com/training/modules/guided-project-calculate-print-student-grades/</a> 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 <a href="https://learn.microsoft.com/training/modules/guided-project-calculate-print-student-grades/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/guided-project-calculate-print-student-grades/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/guided-project-calculate-final-gpa/" target="_blank">https://learn.microsoft.com/training/modules/guided-project-calculate-final-gpa/</a> 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 <a href="https://learn.microsoft.com/training/modules/guided-project-calculate-final-gpa/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/guided-project-calculate-final-gpa/</a> 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`?
|
||||
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/csharp-basic-operations/" target="_blank">https://learn.microsoft.com/training/modules/csharp-basic-operations/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-basic-operations/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-basic-operations/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/csharp-basic-formatting/" target="_blank">https://learn.microsoft.com/training/modules/csharp-basic-formatting/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-basic-formatting/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-basic-formatting/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/csharp-literals-variables/" target="_blank">https://learn.microsoft.com/training/modules/csharp-literals-variables/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-literals-variables/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-literals-variables/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/users/me/achievements#trophies-section" target="_blank" rel="noreferrer">your achievements page</a>, 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.
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/csharp-write-first/" target="_blank">https://learn.microsoft.com/training/modules/csharp-write-first/</a> 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. 跳轉到 <a href="https://learn.microsoft.com/training/modules/csharp-write-first/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-write-first/</a>,然後完成“編寫第一個 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--
|
||||
|
||||
|
||||
@@ -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()` 接受一个或多个参数(<dfn>parameters</dfn>),并把它压入到数组的末尾。
|
||||
The `push()` method takes one or more <dfn>arguments</dfn> 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--
|
||||
|
||||
|
||||
@@ -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
|
||||
<p>I think <a href="https://www.freecodecamp.org/">freeCodeCamp</a> is great.</p>
|
||||
```
|
||||
|
||||
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--
|
||||
|
||||
@@ -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--
|
||||
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/csharp-do-while/" target="_blank">https://learn.microsoft.com/training/modules/csharp-do-while/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-do-while/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-do-while/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/csharp-switch-case/" target="_blank">https://learn.microsoft.com/training/modules/csharp-switch-case/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-switch-case/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-switch-case/</a> 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--
|
||||
|
||||
@@ -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 <a href="https://learn.microsoft.com/training/modules/challenge-project-develop-branching-looping-structures-c-sharp/" target="_blank">https://learn.microsoft.com/training/modules/challenge-project-develop-branching-looping-structures-c-sharp/</a> 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 <a href="https://learn.microsoft.com/training/modules/challenge-project-develop-branching-looping-structures-c-sharp/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/challenge-project-develop-branching-looping-structures-c-sharp/</a> 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--
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user