Skip to content

Commit 3ec7b74

Browse files
authored
Merge pull request #50962 from wwlpublish/bff3483b8af4dc44da9ec5639c33982ae8ee59ebe3df649c50f2640115848f2e-live
Modules/M01-evaluate-boolean-expressions-make-decisions-c-sharp
2 parents ca8eace + e3d3d47 commit 3ec7b74

17 files changed

+72
-41
lines changed

.openpublishing.redirection.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48683,6 +48683,26 @@
4868348683
"source_path": "learn-pr/wwl-language/csharp-if-elseif-else/5-solution.md",
4868448684
"redirect_url": "/training/modules/csharp-if-elseif-else/5-review-solution-apply-business-rules-challenge",
4868548685
"redirect_document_id": false
48686+
},
48687+
{
48688+
"source_path": "learn-pr/wwl-language/csharp-evaluate-boolean-expressions/4-challenge-1.md",
48689+
"redirect_url": "/training/modules/csharp-evaluate-boolean-expressions/4-exercise-challenge-conditional-operators",
48690+
"redirect_document_id": false
48691+
},
48692+
{
48693+
"source_path": "learn-pr/wwl-language/csharp-evaluate-boolean-expressions/5-solution-1.md",
48694+
"redirect_url": "/training/modules/csharp-evaluate-boolean-expressions/5-review-solution-conditional-operators-challenge",
48695+
"redirect_document_id": false
48696+
},
48697+
{
48698+
"source_path": "learn-pr/wwl-language/csharp-evaluate-boolean-expressions/6-challenge-2.md",
48699+
"redirect_url": "/training/modules/csharp-evaluate-boolean-expressions/6-exercise-challenge-boolean-expressions",
48700+
"redirect_document_id": false
48701+
},
48702+
{
48703+
"source_path": "learn-pr/wwl-language/csharp-evaluate-boolean-expressions/7-solution-2.md",
48704+
"redirect_url": "/training/modules/csharp-evaluate-boolean-expressions/7-review-solution-boolean-expressions-challenge",
48705+
"redirect_document_id": false
4868648706
}
4868748707
]
4868848708
}

learn-pr/wwl-language/csharp-evaluate-boolean-expressions/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: 11/07/2024
7+
ms.date: 06/16/2025
88
author: wwlpublish
99
ms.author: cahowd
1010
ms.topic: unit

learn-pr/wwl-language/csharp-evaluate-boolean-expressions/2-exercise-boolean-expressions.yml

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

learn-pr/wwl-language/csharp-evaluate-boolean-expressions/3-exercise-conditional-operator.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Exercise - Implement the conditional operator
44
metadata:
55
title: Exercise - Implement the conditional operator
66
description: "Exercise - Implement the conditional operator"
7-
ms.date: 11/07/2024
7+
ms.date: 06/16/2025
88
author: wwlpublish
99
ms.author: cahowd
1010
ms.topic: unit
@@ -18,7 +18,7 @@ quiz:
1818
questions:
1919
- content: "Which of the following lines of code is a valid use of the conditional operator?"
2020
choices:
21-
- content: "`int bonus = amount >= 100? 10 : 5;`"
21+
- content: "`int bonus = amount >= 100? 10: 5;`"
2222
isCorrect: true
2323
explanation: "Correct! This code line shows the correct syntax for a conditional operator `?:`."
2424
- content: "`int bonus = amount >= 100: 10? 5;`"

learn-pr/wwl-language/csharp-evaluate-boolean-expressions/4-challenge-1.yml renamed to learn-pr/wwl-language/csharp-evaluate-boolean-expressions/4-exercise-challenge-conditional-operators.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ title: Exercise - Complete a challenge activity using conditional operators
44
metadata:
55
title: Exercise - Complete a challenge activity using conditional operators
66
description: "Exercise - Complete a challenge activity using conditional operators"
7-
ms.date: 11/07/2024
7+
ms.date: 06/16/2025
88
author: wwlpublish
99
ms.author: cahowd
1010
ms.topic: unit
1111
ms.custom:
1212
- N/A
1313
durationInMinutes: 6
1414
content: |
15-
[!include[](includes/4-challenge-1.md)]
15+
[!include[](includes/4-exercise-challenge-conditional-operators.md)]

learn-pr/wwl-language/csharp-evaluate-boolean-expressions/5-solution-1.yml renamed to learn-pr/wwl-language/csharp-evaluate-boolean-expressions/5-review-solution-conditional-operators-challenge.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ title: Review the solution to the conditional operator challenge activity
44
metadata:
55
title: Review the solution to the conditional operator challenge activity
66
description: "Review the solution to the conditional operator challenge activity"
7-
ms.date: 11/07/2024
7+
ms.date: 06/16/2025
88
author: wwlpublish
99
ms.author: cahowd
1010
ms.topic: unit
1111
ms.custom:
1212
- N/A
1313
durationInMinutes: 3
1414
content: |
15-
[!include[](includes/5-solution-1.md)]
15+
[!include[](includes/5-review-solution-conditional-operators-challenge.md)]

learn-pr/wwl-language/csharp-evaluate-boolean-expressions/6-challenge-2.yml renamed to learn-pr/wwl-language/csharp-evaluate-boolean-expressions/6-exercise-challenge-boolean-expressions.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ title: Exercise - Complete a challenge activity using Boolean expressions
44
metadata:
55
title: Exercise - Complete a challenge activity using Boolean expressions
66
description: "Exercise - Complete a challenge activity using Boolean expressions"
7-
ms.date: 11/07/2024
7+
ms.date: 06/16/2025
88
author: wwlpublish
99
ms.author: cahowd
1010
ms.topic: unit
1111
ms.custom:
1212
- N/A
1313
durationInMinutes: 10
1414
content: |
15-
[!include[](includes/6-challenge-2.md)]
15+
[!include[](includes/6-exercise-challenge-boolean-expressions.md)]

learn-pr/wwl-language/csharp-evaluate-boolean-expressions/7-solution-2.yml renamed to learn-pr/wwl-language/csharp-evaluate-boolean-expressions/7-review-solution-boolean-expressions-challenge.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ title: Review the solution to the Boolean expressions challenge activity
44
metadata:
55
title: Review the solution to the Boolean expressions challenge activity
66
description: "Review the solution to the Boolean expressions challenge activity"
7-
ms.date: 11/07/2024
7+
ms.date: 06/16/2025
88
author: wwlpublish
99
ms.author: cahowd
1010
ms.topic: unit
1111
ms.custom:
1212
- N/A
1313
durationInMinutes: 5
1414
content: |
15-
[!include[](includes/7-solution-2.md)]
15+
[!include[](includes/7-review-solution-boolean-expressions-challenge.md)]

learn-pr/wwl-language/csharp-evaluate-boolean-expressions/8-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: 11/07/2024
7+
ms.date: 06/16/2025
88
author: wwlpublish
99
ms.author: cahowd
1010
ms.topic: unit

learn-pr/wwl-language/csharp-evaluate-boolean-expressions/9-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: 11/07/2024
7+
ms.date: 06/16/2025
88
author: wwlpublish
99
ms.author: cahowd
1010
ms.topic: unit

0 commit comments

Comments
 (0)