diff --git a/Content/Chapter-3-2-simple-conditions-exam-problems/overview.md b/Content/Chapter-3-2-simple-conditions-exam-problems/overview.md index 135c90deb..ea300dea1 100644 --- a/Content/Chapter-3-2-simple-conditions-exam-problems/overview.md +++ b/Content/Chapter-3-2-simple-conditions-exam-problems/overview.md @@ -1,4 +1,4 @@ -# Chapter 3.2. Simple Conditions - Exam Problems +# Chapter 3.2. Simple Conditions – Exam Problems In the previous chapter, we went through the simple conditional statements in C\#, which we can use to execute different actions depending on a given condition. We mentioned what **the scope** of a variable is, and how to track the execution of our program step by step \(the so-called **debugging**\) as well. In this chapter, we will practice working with simple conditions by going through some exam tasks. To do this, let's first revise their construction: diff --git a/Content/Chapter-6-2-nested-loops-exam-problems/overview.md b/Content/Chapter-6-2-nested-loops-exam-problems/overview.md index 0b12221e4..0782459a7 100644 --- a/Content/Chapter-6-2-nested-loops-exam-problems/overview.md +++ b/Content/Chapter-6-2-nested-loops-exam-problems/overview.md @@ -1,4 +1,4 @@ -# Chapter 6.2. Nested Loops - Exam Problems +# Chapter 6.2. Nested Loops – Exam Problems In the previous chapter we looked at **nested loops** and how to use them to **draw** different kinds of **figures on the console**. We learned how to print figures with different sizes, thinking of an appropriate logic to construct them using **single and nested **`for` loops in combination with various calculations and program logic: diff --git a/Content/Chapter-7-2-complex-loops-exam-problems/overview.md b/Content/Chapter-7-2-complex-loops-exam-problems/overview.md index 205bc1d99..2bb32d31e 100644 --- a/Content/Chapter-7-2-complex-loops-exam-problems/overview.md +++ b/Content/Chapter-7-2-complex-loops-exam-problems/overview.md @@ -1,4 +1,4 @@ -# Chapter 7.2.Complex Loops - Exam Problems +# Chapter 7.2.Complex Loops – Exam Problems We have already learned **how to execute a** block of commands **more than once** using a **for** loop. In the previous chapter **we reviewed some** **loop structures** that would help us solve more complex problems: diff --git a/Content/Chapter-8-1-exam-preparation/overview.md b/Content/Chapter-8-1-exam-preparation/overview.md index 1464d6cf1..d0d0d0c09 100644 --- a/Content/Chapter-8-1-exam-preparation/overview.md +++ b/Content/Chapter-8-1-exam-preparation/overview.md @@ -1,4 +1,4 @@ -# Chapter 8.1. Practical Exam Preparation - Part I +# Chapter 8.1. Practical Exam Preparation – Part I In **the present chapter**, we will look at a few **problems** with a level of **difficulty** that can be expected from **the problems** of the practical **exam** "Programming Basics". We will **review** and **practice** all the knowledge you have gained from this book and through the "Programming Basics" course. diff --git a/SUMMARY.md b/SUMMARY.md index 4c127fab9..81640ebd9 100644 --- a/SUMMARY.md +++ b/SUMMARY.md @@ -79,7 +79,7 @@ * [Problem: Equal 3 Numbers](Content/Chapter-3-1-simple-conditions/exercises-simple-conditions/equal-numbers/equal-numbers.md) * [Problem: \* Writing the Numbers from 0 to 100 in Words](Content/Chapter-3-1-simple-conditions/exercises-simple-conditions/number-to-words/number-to-words.md) * [Lab: GUI \(Desktop\) Application: Currency Converter](Content/Chapter-3-1-simple-conditions/exercises-simple-conditions/graphical-app/graphical-app.md) -* [3.2. Simple Conditions - Exam Problems](Content/Chapter-3-2-simple-conditions-exam-problems/overview.md) +* [3.2. Simple Conditions – Exam Problems](Content/Chapter-3-2-simple-conditions-exam-problems/overview.md) * [Problem: Transportation Price](Content/Chapter-3-2-simple-conditions-exam-problems/exam-problems/ticket-price/ticket-price.md) * [Problem: Pipes in a Pool](Content/Chapter-3-2-simple-conditions-exam-problems/exam-problems/pipes-in-pool/pipes-in-pool.md) * [Problem: Sleepy Tom Cat](Content/Chapter-3-2-simple-conditions-exam-problems/exam-problems/sleepy-tom-cat/sleepy-tom-cat.md) @@ -145,7 +145,7 @@ * [Problem: House](Content/Chapter-6-1-nested-loops/drawing-more-complex-figures/house/house.md) * [Problem: Diamond](Content/Chapter-6-1-nested-loops/drawing-more-complex-figures/diamond/diamond.md) * [Lab: Drawing Ratings in a Web](Content/Chapter-6-1-nested-loops/exercise-drawing-figures-in-web-app/exercise-drawing-figures-in-web-app.md) -* [6.2. Nested Loops - Exam Problems](Content/Chapter-6-2-nested-loops-exam-problems/overview.md) +* [6.2. Nested Loops – Exam Problems](Content/Chapter-6-2-nested-loops-exam-problems/overview.md) * [Problem: Drawing a Fort](Content/Chapter-6-2-nested-loops-exam-problems/exam-problems/draw-fort/draw-fort.md) * [Problem: Butterfly](Content/Chapter-6-2-nested-loops-exam-problems/exam-problems/butterfly/butterfly.md) * [Problem: "Stop" Sign](Content/Chapter-6-2-nested-loops-exam-problems/exam-problems/stop/stop.md) @@ -164,20 +164,20 @@ * [Problem: Numbers Pyramid](Content/Chapter-7-1-complex-loops/exercises-with-loops/number-pyramid/number-pyramid.md) * [Problem: Numbers Table](Content/Chapter-7-1-complex-loops/exercises-with-loops/number-table/number-table.md) * [Lab: Web Application](Content/Chapter-7-1-complex-loops/web-app/web-apps-with-complex-loops.md) -* [7.2. More Complex Loops - Exam Problems](Content/Chapter-7-2-complex-loops-exam-problems/overview.md) +* [7.2. More Complex Loops – Exam Problems](Content/Chapter-7-2-complex-loops-exam-problems/overview.md) * [Problem: Dumb Passwords Generator](Content/Chapter-7-2-complex-loops-exam-problems/stupid-password-generator/stupid-password-generator.md) * [Problem: Magic Numbers](Content/Chapter-7-2-complex-loops-exam-problems/magic-combination/magic-combination.md) * [Problem: Stop Number](Content/Chapter-7-2-complex-loops-exam-problems/stop-number/stop-number.md) * [Problem: Special Numbers](Content/Chapter-7-2-complex-loops-exam-problems/special-numbers/special-numbers.md) * [Problem: Digits](Content/Chapter-7-2-complex-loops-exam-problems/digits/digits.md) -* [8.1. Practical Exam Preparations - Part I](Content/Chapter-8-1-exam-preparation/overview.md) +* [8.1. Practical Exam Preparations – Part I](Content/Chapter-8-1-exam-preparation/overview.md) * [Simple Calculations – Problems](Content/Chapter-8-1-exam-preparation/simple-calculations-problems/simple-calc-problems.md) * [Simple Conditions – Problems](Content/Chapter-8-1-exam-preparation/simple-conditions-problems/simple-conditions-problems.md) * [Complex Conditions – Problems](Content/Chapter-8-1-exam-preparation/complex-conditions-problems/complex-conditions-problems.md) * [Simple Loops – Problems](Content/Chapter-8-1-exam-preparation/simple-loops-problems/simple-loops-problems.md) * [Drawing Figures – Problems](Content/Chapter-8-1-exam-preparation/drawing-figures-problems/drawing-figures-problems.md) * [Nested Loops – Problems](Content/Chapter-8-1-exam-preparation/nested-loops-problems/nested-loops-problems.md) -* [8.2. Practical Exam Preparations - Part II](Content/Chapter-8-2-exam-preparation-part-2/overview.md) +* [8.2. Practical Exam Preparations – Part II](Content/Chapter-8-2-exam-preparation-part-2/overview.md) * [Problem: Distance](Content/Chapter-8-2-exam-preparation-part-2/distance/distance.md) * [Problem: Changing Tiles](Content/Chapter-8-2-exam-preparation-part-2/change-tiles/change-tiles.md) * [Problem: Flowers Shop](Content/Chapter-8-2-exam-preparation-part-2/flowers/flowers.md)