Skip to content

Commit da61de2

Browse files
authored
changed files by pdets auto publish service, publishid[369ecde6-e14e-4477-bbe2-ee8c048641ca] and do [publish].
1 parent 899ec4f commit da61de2

11 files changed

+23
-22
lines changed

learn-pr/wwl-language/guided-project-arrays-iteration-selection/1-introduction.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Introduction
44
metadata:
55
title: Introduction
66
description: "Introduction"
7-
ms.date: 12/12/2024
7+
ms.date: 06/16/2025
88
author: wwlpublish
99
ms.author: cahowd
1010
ms.topic: unit

learn-pr/wwl-language/guided-project-arrays-iteration-selection/2-prepare.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Prepare
44
metadata:
55
title: Prepare
66
description: "Prepare"
7-
ms.date: 12/12/2024
7+
ms.date: 06/16/2025
88
author: wwlpublish
99
ms.author: cahowd
1010
ms.topic: unit

learn-pr/wwl-language/guided-project-arrays-iteration-selection/3-exercise-create-arrays-foreach-loops.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Exercise - Create arrays and foreach loops
44
metadata:
55
title: Exercise - Create arrays and foreach loops
66
description: "Exercise - Create arrays and foreach loops"
7-
ms.date: 12/12/2024
7+
ms.date: 06/16/2025
88
author: wwlpublish
99
ms.author: cahowd
1010
ms.topic: unit

learn-pr/wwl-language/guided-project-arrays-iteration-selection/4-exercise-construct-nested-loops.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Exercise - Construct a nested loop structure for student grade calculatio
44
metadata:
55
title: Exercise - Construct a nested loop structure for student grade calculations
66
description: "Exercise - Construct a nested loop structure for student grade calculations"
7-
ms.date: 12/12/2024
7+
ms.date: 06/16/2025
88
author: wwlpublish
99
ms.author: cahowd
1010
ms.topic: unit

learn-pr/wwl-language/guided-project-arrays-iteration-selection/5-exercise-implement-selection-statements.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Exercise - Implement code branches using selection statements
44
metadata:
55
title: Exercise - Implement code branches using selection statements
66
description: "Exercise - Implement code branches using selection statements"
7-
ms.date: 12/12/2024
7+
ms.date: 06/16/2025
88
author: wwlpublish
99
ms.author: cahowd
1010
ms.topic: unit

learn-pr/wwl-language/guided-project-arrays-iteration-selection/6-knowledge-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Module assessment
44
metadata:
55
title: Module assessment
66
description: "Knowledge check"
7-
ms.date: 12/12/2024
7+
ms.date: 06/16/2025
88
author: wwlpublish
99
ms.author: cahowd
1010
ms.topic: unit

learn-pr/wwl-language/guided-project-arrays-iteration-selection/7-summary.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Summary
44
metadata:
55
title: Summary
66
description: "Summary"
7-
ms.date: 12/12/2024
7+
ms.date: 06/16/2025
88
author: wwlpublish
99
ms.author: cahowd
1010
ms.topic: unit

learn-pr/wwl-language/guided-project-arrays-iteration-selection/includes/3-exercise-create-arrays-foreach-loops.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
In this exercise, you'll review the Starter project code and then begin updating the application. Your first coding task will be creating the arrays that hold student exam scores. Once your application data is available in arrays, you'll begin working on a `foreach` loop that can be used to sum student grades. The detailed tasks that you'll complete during this exercise are:
22

3-
1. Code review: review the contents of the Program.cs file.
3+
1. Code review: review the contents of the Program.cs file.
44

55
1. Arrays: Create the arrays that store each student's assignment scores.
66

@@ -21,11 +21,11 @@ In this task, you'll review the code that's provided as a Starter project for th
2121

2222
The Prepare unit (the previous unit in this module) includes a Setup section for this Guided project module. The Setup section describes the process for downloading your initial code and opening the project folder Visual Studio Code. If necessary, go back and follow the Setup instructions.
2323

24-
1. In the Visual Studio Code EXPLORER panel, expand the **Starter** folder, then select **Program.cs**.
24+
1. In the Visual Studio Code EXPLORER view, expand the **Starter** folder, then select **Program.cs**.
2525

26-
When you select the Program.cs file, the file contents will open in the main Editor area to the right of the EXPLORER panel.
26+
When you select the Program.cs file, the file contents will open in the main Editor area to the right of the EXPLORER view.
2727

28-
If the EXPLORER panel isn't open, you can open it using the Activity Bar on the far-left side of the Visual Studio Code window. The EXPLORER button is the topmost icon on the Activity Bar.
28+
If the EXPLORER view isn't open, you can open it using the Activity Bar on the far-left side of the Visual Studio Code window. The EXPLORER button is the topmost icon on the Activity Bar.
2929

3030
1. Take a few minutes to review the code in the Program.cs file.
3131

@@ -121,7 +121,7 @@ In this task, you'll review the code that's provided as a Starter project for th
121121

122122
The `Console.ReadLine()` statement will pause the application so that the application user can review the output.
123123

124-
1. In the Visual Studio Code EXPLORER panel, right-click **Starter**, and then select **Open in Integrated Terminal**.
124+
1. In the Visual Studio Code EXPLORER view, right-click **Starter**, and then select **Open in Integrated Terminal**.
125125

126126
You will be using the TERMINAL panel to run .NET Command Line Interface (CLI) commands, such as `dotnet build` and `dotnet run`. The `dotnet build` command will compile your code and display error and warning messages related to your code syntax.
127127

@@ -391,7 +391,7 @@ In this task, you'll run the application to verify that your code logic is worki
391391

392392
1. Ensure that you've saved your changes to the Program.cs file.
393393

394-
1. In the Visual Studio Code EXPLORER panel, right-click **Starter**, and then select **Open in Integrated Terminal**.
394+
1. In the Visual Studio Code EXPLORER view, right-click **Starter**, and then select **Open in Integrated Terminal**.
395395

396396
You will be using the Terminal panel to enter .NET CLI commands that build and run your applications.
397397

learn-pr/wwl-language/guided-project-arrays-iteration-selection/includes/4-exercise-construct-nested-loops.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ In this task, you'll create a student names array and a `foreach` loop that iter
7676

7777
1. On the Visual Studio Code **File** menu, click **Save**.
7878

79-
1. In the Visual Studio Code EXPLORER panel, right-click **Starter**, and then select **Open in Integrated Terminal**.
79+
1. In the Visual Studio Code EXPLORER view, right-click **Starter**, and then select **Open in Integrated Terminal**.
8080

8181
> [!IMPORTANT]
8282
> The Terminal command prompt must be displaying the folder path for your Program.cs file.
@@ -257,7 +257,7 @@ In this task, you'll relocate the code that calculates and reports Sophia's scor
257257

258258
1. On the Visual Studio Code **File** menu, click **Save**.
259259

260-
1. In the Visual Studio Code EXPLORER panel, right-click **Starter**, and then select **Open in Integrated Terminal**.
260+
1. In the Visual Studio Code EXPLORER view, right-click **Starter**, and then select **Open in Integrated Terminal**.
261261

262262
> [!IMPORTANT]
263263
> The Terminal command prompt must be displaying the folder path for your Program.cs file.
@@ -314,7 +314,7 @@ In this task, you'll update the code that performs student score calculations us
314314
```
315315

316316
> [!NOTE]
317-
> You could continue to use `name` to track the name of the current student as you iterate through the names array, but using `currentName` will make it easier to understand your code logic as you build out your application in the upcoming steps.
317+
> You could continue to use `name` to track the name of the current student as you iterate through the names array, but using `currentStudent` will make it easier to understand your code logic as you build out your application in the upcoming steps.
318318

319319
1. To substitute `currentStudent` for `name` in the `if` statement that evaluates whether `name` is equal to Sophia, update your code as follows:
320320

@@ -574,7 +574,7 @@ In this task, you'll run the application to verify that your code logic is worki
574574

575575
1. Ensure that you've saved your changes to the Program.cs file.
576576

577-
1. In the Visual Studio Code EXPLORER panel, right-click **Starter**, and then select **Open in Integrated Terminal**.
577+
1. In the Visual Studio Code EXPLORER view, right-click **Starter**, and then select **Open in Integrated Terminal**.
578578

579579
1. At the Terminal command prompt, type **dotnet build** and then press Enter.
580580

learn-pr/wwl-language/guided-project-arrays-iteration-selection/includes/5-exercise-implement-selection-statements.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ In this task, you'll develop an `if-elseif-else` structure that can be used to a
258258

259259
1. On the Visual Studio Code **File** menu, click **Save**.
260260

261-
1. In the Visual Studio Code EXPLORER panel, right-click **Starter**, and then select **Open in Integrated Terminal**.
261+
1. In the Visual Studio Code EXPLORER view, right-click **Starter**, and then select **Open in Integrated Terminal**.
262262

263263
1. At the Terminal command prompt, type **dotnet build** and then press Enter.
264264

@@ -532,7 +532,7 @@ In this task, you'll run the application to verify that your code logic is worki
532532

533533
1. Ensure that you've saved your changes to the Program.cs file.
534534

535-
1. In the Visual Studio Code EXPLORER panel, right-click **Starter**, and then select **Open in Integrated Terminal**.
535+
1. In the Visual Studio Code EXPLORER view, right-click **Starter**, and then select **Open in Integrated Terminal**.
536536

537537
1. At the Terminal command prompt, type **dotnet build** and then press Enter.
538538

@@ -610,7 +610,7 @@ In this task, you'll run the application to verify that your code logic is worki
610610

611611
1. On the Visual Studio Code **File** menu, click **Save**.
612612

613-
1. In the Visual Studio Code EXPLORER panel, right-click **Starter**, and then select **Open in Integrated Terminal**.
613+
1. In the Visual Studio Code EXPLORER view, right-click **Starter**, and then select **Open in Integrated Terminal**.
614614

615615
1. At the Terminal command prompt, type **dotnet build** and then press Enter.
616616

0 commit comments

Comments
 (0)