Skip to content

Commit cedcaa6

Browse files
authored
pull base content,head:wwlpublishsync,into:05e0975cc3477f6ca0593371017d0bdaf27970d21b5481dd92903e5fb804cad9-live
2 parents efc6993 + f6b9319 commit cedcaa6

File tree

49 files changed

+122
-102
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+122
-102
lines changed

.openpublishing.redirection.json

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48633,6 +48633,16 @@
4863348633
"source_path": "learn-pr/sqlserver/sql-server-2022-performance-enhancements/8-summary.md",
4863448634
"redirect_url": "/training/paths/get-started-querying-with-transact-sql/",
4863548635
"redirect_document_id": false
48636-
}
48636+
},
48637+
{
48638+
"source_path": "learn-pr/wwl-language/csharp-readable-code/5-challenge.md",
48639+
"redirect_url": "/training/modules/csharp-readable-code/5-exercise-challenge-improve-code-readability",
48640+
"redirect_document_id": false
48641+
},
48642+
{
48643+
"source_path": "learn-pr/wwl-language/csharp-readable-code/6-solution.md",
48644+
"redirect_url": "/training/modules/csharp-readable-code/6-review-solution-code-readability-challenge",
48645+
"redirect_document_id": false
48646+
}
4863748647
]
4863848648
}

learn-pr/wwl-language/challenge-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: 02/22/2024
7+
ms.date: 06/16/2025
88
author: wwlpublish
99
ms.author: cahowd
1010
ms.topic: unit

learn-pr/wwl-language/challenge-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: 02/22/2024
7+
ms.date: 06/16/2025
88
author: wwlpublish
99
ms.author: cahowd
1010
ms.topic: unit

learn-pr/wwl-language/challenge-project-arrays-iteration-selection/3-exercise-update-output.yml

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

learn-pr/wwl-language/challenge-project-arrays-iteration-selection/4-exercise-update-calculations.yml

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

learn-pr/wwl-language/challenge-project-arrays-iteration-selection/5-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: 02/22/2024
7+
ms.date: 06/16/2025
88
author: wwlpublish
99
ms.author: cahowd
1010
ms.topic: unit

learn-pr/wwl-language/challenge-project-arrays-iteration-selection/6-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: 02/22/2024
7+
ms.date: 06/16/2025
88
author: wwlpublish
99
ms.author: cahowd
1010
ms.topic: unit

learn-pr/wwl-language/challenge-project-arrays-iteration-selection/includes/1-introduction.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
2-
31
End users often ask developers to add new features to an application. User requests indicate that your application is being used, and more importantly, that the customer plans to continue using your application. The customer just wants some features updated. The ability to update an existing application based on user requests is very important. A successful update will preserve the integrity of the original application while providing the user with the improved experience that they requested.
42

53
Suppose you're a teacher's assistant at a school and that you developed an application to automate the grading process. The application uses arrays to store student names and graded assignments. The application also implements a combination of iteration and selection statements to calculate and report each student's final grade. Your application even differentiates between exam assignments and extra credit assignments when calculating student grades. Although the application does everything that the teacher asked for, you've received a request for new features. The teacher has asked you to update the grading report to show exam and extra credit assignment scores separately from the final numeric score and letter grade.
@@ -14,7 +12,7 @@ In short, you need to use the teacher's updated grading report specification to:
1412
By the end of this module, you'll have an updated version of the Student Grading application that's able to calculate and report student grades in accordance with the teacher's updated requirements.
1513

1614
> [!NOTE]
17-
> This is a challenge project module where you’ll complete an end-to-end project from a specification. This module is intended to be a test of your skills; there’s little guidance and no step-by-step instructions .
15+
> This is a challenge project module where you’ll complete an end-to-end project from a specification. This module is intended to be a test of your skills; there’s little guidance and no step-by-step instructions.
1816
1917
## Learning Objectives
2018

learn-pr/wwl-language/challenge-project-arrays-iteration-selection/includes/2-prepare.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
2-
3-
41
In this guided project, you'll use Visual Studio Code to develop portions of a C# console application. You'll begin by writing the code that performs various numeric calculations. All calculations must be completed within the existing iteration and selection structures. This Prepare unit provides you with the overall goals of the project and the requirements for your application. The Setup section describes how to set up your development environment, including a "Starter" code project.
52

63
> [!IMPORTANT]

learn-pr/wwl-language/challenge-project-arrays-iteration-selection/includes/3-exercise-update-output.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
2-
31
The Student Grading application is used to calculate and report student grades based on their graded exam and extra credit assignments. Your goal in this challenge is to update the code that generates a score report in accordance with the teacher's updated requirements.
42

53
## Specification

0 commit comments

Comments
 (0)