Skip to content

Commit b54242f

Browse files
Merge pull request #50553 from wwlpublish/ed571252727d07d245e990d1af2ea17fbe5a845e9f26d2454208083dfd44a098-live
Modules/M06-guided-project-develop-conditional-branching-looping
2 parents 06a342e + ffb1438 commit b54242f

File tree

10 files changed

+18
-11
lines changed

10 files changed

+18
-11
lines changed

learn-pr/wwl-language/guided-project-develop-conditional-branching-looping/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: 05/20/2025
88
author: wwlpublish
99
ms.author: cahowd
1010
ms.topic: unit

learn-pr/wwl-language/guided-project-develop-conditional-branching-looping/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: 05/20/2025
88
author: wwlpublish
99
ms.author: cahowd
1010
ms.topic: unit

learn-pr/wwl-language/guided-project-develop-conditional-branching-looping/3-exercise-build-data-menu-loops.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Exercise - Build sample data and menu selection loops
44
metadata:
55
title: Exercise - Build sample data and menu selection loops
66
description: "Exercise - Build sample data and menu selection loops"
7-
ms.date: 02/22/2024
7+
ms.date: 05/20/2025
88
author: wwlpublish
99
ms.author: cahowd
1010
ms.topic: unit

learn-pr/wwl-language/guided-project-develop-conditional-branching-looping/4-exercise-display-all-array-data.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Exercise - Write code to display all ourAnimals array data
44
metadata:
55
title: Exercise - Write code to display all ourAnimals array data
66
description: "Exercise - Write code to display all ourAnimals array data"
7-
ms.date: 02/22/2024
7+
ms.date: 05/20/2025
88
author: wwlpublish
99
ms.author: cahowd
1010
ms.topic: unit

learn-pr/wwl-language/guided-project-develop-conditional-branching-looping/5-exercise-build-loop-new-array-data.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Exercise - Build and test a loop for entering new pet data
44
metadata:
55
title: Exercise - Build and test a loop for entering new pet data
66
description: "Exercise - Build and test a loop for entering new pet data"
7-
ms.date: 02/22/2024
7+
ms.date: 05/20/2025
88
author: wwlpublish
99
ms.author: cahowd
1010
ms.topic: unit

learn-pr/wwl-language/guided-project-develop-conditional-branching-looping/6-exercise-read-save-array-data.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Exercise - Write code to read and save new ourAnimals array data
44
metadata:
55
title: Exercise - Write code to read and save new ourAnimals array data
66
description: "Exercise - Write code to read and save new ourAnimals array data"
7-
ms.date: 02/22/2024
7+
ms.date: 05/20/2025
88
author: wwlpublish
99
ms.author: cahowd
1010
ms.topic: unit

learn-pr/wwl-language/guided-project-develop-conditional-branching-looping/7-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: 05/20/2025
88
author: wwlpublish
99
ms.author: cahowd
1010
ms.topic: unit

learn-pr/wwl-language/guided-project-develop-conditional-branching-looping/8-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: 05/20/2025
88
author: wwlpublish
99
ms.author: cahowd
1010
ms.topic: unit

learn-pr/wwl-language/guided-project-develop-conditional-branching-looping/includes/6-exercise-read-save-array-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ In this task, you create a `do` loop that iterates until the user enters a strin
308308
}
309309
```
310310

311-
1. Compare your completed physical description data entry loop with the following code:
311+
1. Compare your completed personality description data entry loop with the following code:
312312

313313
```c#
314314
// get a description of the pet's personality - animalPersonalityDescription can be blank.

learn-pr/wwl-language/guided-project-develop-conditional-branching-looping/index.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,32 @@ uid: learn.wwl.guided-project-develop-conditional-branching-looping
33
metadata:
44
title: Guided project - Develop conditional branching and looping structures in C#
55
description: "Gain experience developing a console app that implements selection and iteration statements to achieve app specifications."
6-
ms.date: 02/22/2024
6+
ms.date: 05/20/2025
77
author: wwlpublish
88
ms.author: cahowd
99
ms.topic: module
1010
ms.custom:
1111
- N/A
1212
ms.service: dotnet-csharp
1313
ms.devlang: csharp
14+
ai-usage: human-only
1415
title: Guided project - Develop conditional branching and looping structures in C#
1516
summary: Gain experience developing a console app that implements selection and iteration statements to achieve app specifications.
1617
abstract: |
1718
In this module, you'll practice how to:
19+
1820
- Use Visual Studio Code to develop a C# console application that uses a combination of selection and iteration statements to implement logical workflows in accordance with supplied application data and user interactions.
21+
1922
- Evaluate the underlying conditions and make an informed decision when choosing between if-elseif-else and switch statements, and between foreach, for, while, and do iteration statements.
23+
2024
- Scope variables at an appropriate level within an application.
2125
prerequisites: |
2226
- Experience using Visual Studio Code to develop, build, and run C# console applications that include console I/O and access the methods of .NET classes
27+
2328
- Experience using C# code to evaluate conditional expressions and manage variable scope inside and outside of code blocks
29+
2430
- Experience using if-elseif-else and switch-case statements in C# to match a variable or expression against several possible outcomes
31+
2532
- Experience using foreach, for, do, and while statements in C# to loop through a block of code and access elements of array variables
2633
iconUrl: /training/achievements/guided-project-develop-conditional-branching-looping.svg
2734
levels:
@@ -46,4 +53,4 @@ units:
4653
- learn.wwl.guided-project-develop-conditional-branching-looping.knowledge-check
4754
- learn.wwl.guided-project-develop-conditional-branching-looping.summary
4855
badge:
49-
uid: learn.wwl.guided-project-develop-conditional-branching-looping.badge
56+
uid: learn.wwl.guided-project-develop-conditional-branching-looping.badge

0 commit comments

Comments
 (0)