diff --git a/curriculum/challenges/arabic/16-the-odin-project/top-learn-html-foundations/html-foundations-question-a.md b/curriculum/challenges/arabic/16-the-odin-project/top-learn-html-foundations/html-foundations-question-a.md index 26dcaf81d51..138c596a766 100644 --- a/curriculum/challenges/arabic/16-the-odin-project/top-learn-html-foundations/html-foundations-question-a.md +++ b/curriculum/challenges/arabic/16-the-odin-project/top-learn-html-foundations/html-foundations-question-a.md @@ -26,12 +26,12 @@ HTML has a vast list of predefined tags that you can use to create all kinds of Using the correct elements for content is called semantic HTML. You will explore this in much more depth later on in the curriculum. -# --question-- - -## --assignment-- +# --assignment-- Watch Kevin Powell’s [Introduction to HTML video](https://www.youtube.com/watch?v=LGQuIIv2RVA&list=PL4-IK0AVhVjM0xE0K2uZRvsM7LkIhsPT-) +# --question-- + ## --text-- What are HTML tags? diff --git a/curriculum/challenges/arabic/16-the-odin-project/top-learn-html-foundations/html-foundations-question-e.md b/curriculum/challenges/arabic/16-the-odin-project/top-learn-html-foundations/html-foundations-question-e.md index 58e4fab1b96..0a6e5658f3d 100644 --- a/curriculum/challenges/arabic/16-the-odin-project/top-learn-html-foundations/html-foundations-question-e.md +++ b/curriculum/challenges/arabic/16-the-odin-project/top-learn-html-foundations/html-foundations-question-e.md @@ -11,12 +11,12 @@ HTML and CSS are two languages that work together to create everything that you Many helpful resources out there keep referring to HTML and CSS as programming languages, but if you want to get technical, labeling them as such is not quite accurate. This is because they are only concerned with presenting information. They are not used to program logic. JavaScript, which you will learn in the next section, is a programming language because it’s used to make webpages do things. Yet, there is quite a lot you can do with just HTML and CSS, and you will definitely need them both. Throughout our curriculum, the following lessons focus on giving you the tools you need to succeed once you reach JavaScript content. -# --question-- - -## --assignment-- +# --assignment-- Read the HTML vs CSS vs JavaScript article. It is a quick overview of the relationships between HTML, CSS, and JavaScript. +# --question-- + ## --text-- Which of the following statements is true? @@ -37,5 +37,3 @@ HTML and CSS are used to add style to a webpage, and JavaScript is used to creat ## --video-solution-- 2 - - diff --git a/curriculum/challenges/arabic/16-the-odin-project/top-learn-html-foundations/html-foundations-question-g.md b/curriculum/challenges/arabic/16-the-odin-project/top-learn-html-foundations/html-foundations-question-g.md index 16299d58648..29cc79ceab3 100644 --- a/curriculum/challenges/arabic/16-the-odin-project/top-learn-html-foundations/html-foundations-question-g.md +++ b/curriculum/challenges/arabic/16-the-odin-project/top-learn-html-foundations/html-foundations-question-g.md @@ -12,9 +12,7 @@ The final element needed to complete the HTML boilerplate is the `` elemen To complete the boilerplate, add a `body` element to the `index.html` file. The `body` element also goes within the `html` element and is always below the `head` element, like so: -# --question-- - -## --assignment-- +# --assignment-- Watch and follow along to Kevin Powell’s brilliant Building your first web page video above. @@ -26,6 +24,8 @@ Build some muscle memory by deleting the contents of the `index.html` file and t Run your boilerplate through this [HTML validator](https://www.freeformatter.com/html-validator.html). Validators ensure your markup is correct and are an excellent learning tool, as they provide feedback on syntax errors you may be making often and aren’t aware of, such as missing closing tags and extra spaces in your HTML. +# --question-- + ## --text-- What is the purpose of the `body` element? diff --git a/curriculum/challenges/arabic/16-the-odin-project/top-links-and-images/links-and-images-question-a.md b/curriculum/challenges/arabic/16-the-odin-project/top-links-and-images/links-and-images-question-a.md index b4d237448f3..09759d1d3e7 100644 --- a/curriculum/challenges/arabic/16-the-odin-project/top-links-and-images/links-and-images-question-a.md +++ b/curriculum/challenges/arabic/16-the-odin-project/top-links-and-images/links-and-images-question-a.md @@ -39,12 +39,12 @@ By default, any text wrapped with an anchor tag without a `href` attribute will It’s worth noting you can use anchor tags to link to any kind of resource on the internet, not just other HTML documents. You can link to videos, pdf files, images, and so on, but for the most part, you will be linking to other HTML documents. -# --question-- - -## --assignment-- +# --assignment-- Watch Kevin Powell’s HTML Links video above. +# --question-- + ## --text-- What HTML tag is used to create a link? diff --git a/curriculum/challenges/arabic/16-the-odin-project/top-links-and-images/links-and-images-question-d.md b/curriculum/challenges/arabic/16-the-odin-project/top-links-and-images/links-and-images-question-d.md index 37eebffbabf..19e8da36314 100644 --- a/curriculum/challenges/arabic/16-the-odin-project/top-links-and-images/links-and-images-question-d.md +++ b/curriculum/challenges/arabic/16-the-odin-project/top-links-and-images/links-and-images-question-d.md @@ -85,12 +85,12 @@ In many cases, this will work just fine; however, you can still run into unexpec ``` -# --question-- - -## --assignment-- +# --assignment-- Watch Kevin Powell’s HTML File Structure video above. +# --question-- + ## --text-- What is the difference between an absolute and a relative link? diff --git a/curriculum/challenges/arabic/16-the-odin-project/top-links-and-images/links-and-images-question-e.md b/curriculum/challenges/arabic/16-the-odin-project/top-links-and-images/links-and-images-question-e.md index ae008078088..8ac3815d177 100644 --- a/curriculum/challenges/arabic/16-the-odin-project/top-links-and-images/links-and-images-question-e.md +++ b/curriculum/challenges/arabic/16-the-odin-project/top-links-and-images/links-and-images-question-e.md @@ -71,12 +71,12 @@ The `alt` attribute is used to describe an image. It will be used in place of th This is how the The Odin Project logo example you used earlier looks with an `alt` attribute included: -# --question-- - -## --assignment-- +# --assignment-- Watch Kevin Powell’s HTML Images Video above. +# --question-- + ## --text-- Which tag is used to display an image? diff --git a/curriculum/challenges/arabic/16-the-odin-project/top-links-and-images/links-and-images-question-h.md b/curriculum/challenges/arabic/16-the-odin-project/top-links-and-images/links-and-images-question-h.md index 71157081ae7..f7ed108d84e 100644 --- a/curriculum/challenges/arabic/16-the-odin-project/top-links-and-images/links-and-images-question-h.md +++ b/curriculum/challenges/arabic/16-the-odin-project/top-links-and-images/links-and-images-question-h.md @@ -70,12 +70,12 @@ The `alt` attribute is used to describe an image. It will be used in place of th This is how the The Odin Project logo example you used earlier looks with an alt attribute included: -# --question-- - -## --assignment-- +# --assignment-- Read about the four main image formats that can be used on the web. +# --question-- + ## --text-- What are the four main image formats that you can use for images on the web? diff --git a/curriculum/challenges/arabic/16-the-odin-project/top-the-box-model/the-box-model-question-a.md b/curriculum/challenges/arabic/16-the-odin-project/top-the-box-model/the-box-model-question-a.md index 81cc2d54518..e2882cdb454 100644 --- a/curriculum/challenges/arabic/16-the-odin-project/top-the-box-model/the-box-model-question-a.md +++ b/curriculum/challenges/arabic/16-the-odin-project/top-the-box-model/the-box-model-question-a.md @@ -13,12 +13,12 @@ To open up the inspector, you can right-click on any element of a webpage and cl Don’t get overwhelmed with all the tools you’re now seeing! For this lesson, we want to focus on the Elements and Styles panes. -# --question-- - -## --assignment-- +# --assignment-- Play around with Chrome Dev Tools and see if you can answer the following question. +# --question-- + ## --text-- Which panes should you focus on in the Chrome Dev Tools for inspecting and debugging HTML and CSS? diff --git a/curriculum/challenges/arabic/16-the-odin-project/top-the-box-model/the-box-model-question-c.md b/curriculum/challenges/arabic/16-the-odin-project/top-the-box-model/the-box-model-question-c.md index 84cee19aea0..25a32e0f581 100644 --- a/curriculum/challenges/arabic/16-the-odin-project/top-the-box-model/the-box-model-question-c.md +++ b/curriculum/challenges/arabic/16-the-odin-project/top-the-box-model/the-box-model-question-c.md @@ -14,12 +14,12 @@ When an element is selected, the Styles tab will show all the currently applied ![Overwritten style](https://cdn.statically.io/gh/TheOdinProject/curriculum/f8fd38fc62578d8e8368f5303126215a492847f0/foundations/html_css/inspecting-html-and-css/imgs/03.png) -# --question-- - -## --assignment-- +# --assignment-- Play around with Chrome Dev Tools and see if you can answer the following question. +# --question-- + ## --text-- Which feature in the Elements pane allows you to select any element on a webpage by hovering over it? diff --git a/curriculum/challenges/arabic/16-the-odin-project/top-the-box-model/the-box-model-question-d.md b/curriculum/challenges/arabic/16-the-odin-project/top-the-box-model/the-box-model-question-d.md index 4d882631471..a4d810760a5 100644 --- a/curriculum/challenges/arabic/16-the-odin-project/top-the-box-model/the-box-model-question-d.md +++ b/curriculum/challenges/arabic/16-the-odin-project/top-the-box-model/the-box-model-question-d.md @@ -14,13 +14,12 @@ When an element is selected, the Styles tab will show all the currently applied ![Overwritten style](https://cdn.statically.io/gh/TheOdinProject/curriculum/f8fd38fc62578d8e8368f5303126215a492847f0/foundations/html_css/inspecting-html-and-css/imgs/03.png) - -# --question-- - -## --assignment-- +# --assignment-- Play around with Chrome Dev Tools and see if you can answer the following question. +# --question-- + ## --text-- In the Styles pane, what information can you view about an element when it is selected? diff --git a/curriculum/challenges/arabic/16-the-odin-project/top-the-box-model/the-box-model-question-f.md b/curriculum/challenges/arabic/16-the-odin-project/top-the-box-model/the-box-model-question-f.md index a91d049aee3..96e12157b13 100644 --- a/curriculum/challenges/arabic/16-the-odin-project/top-the-box-model/the-box-model-question-f.md +++ b/curriculum/challenges/arabic/16-the-odin-project/top-the-box-model/the-box-model-question-f.md @@ -16,13 +16,12 @@ Every single thing on a webpage is a rectangular box. These boxes can have other } ``` - -# --question-- - -## --assignment-- +# --assignment-- Add a border to every element on the page and see how the boxes are laid out. +# --question-- + ## --text-- What is the fundamental concept in CSS that helps you understand the structure of elements as rectangular boxes? diff --git a/curriculum/challenges/arabic/16-the-odin-project/top-the-box-model/the-box-model-question-g.md b/curriculum/challenges/arabic/16-the-odin-project/top-the-box-model/the-box-model-question-g.md index b8c981a7aa9..fdd4840cfa0 100644 --- a/curriculum/challenges/arabic/16-the-odin-project/top-the-box-model/the-box-model-question-g.md +++ b/curriculum/challenges/arabic/16-the-odin-project/top-the-box-model/the-box-model-question-g.md @@ -20,12 +20,12 @@ Be sure to study the diagrams carefully. ![the box model](https://cdn.statically.io/gh/TheOdinProject/curriculum/main/foundations/html_css/css-foundations/the-box-model/imgs/box-model.png) -# --question-- - -## --assignment-- +# --assignment-- Add a border to every element on the page and see how the boxes are laid out. +# --question-- + ## --text-- From inside to outside, what is the order of box-model properties? diff --git a/curriculum/challenges/arabic/16-the-odin-project/top-working-with-text/working-with-text-question-a.md b/curriculum/challenges/arabic/16-the-odin-project/top-working-with-text/working-with-text-question-a.md index 8698b62aca8..33176924828 100644 --- a/curriculum/challenges/arabic/16-the-odin-project/top-working-with-text/working-with-text-question-a.md +++ b/curriculum/challenges/arabic/16-the-odin-project/top-working-with-text/working-with-text-question-a.md @@ -32,12 +32,12 @@ Changing our example from before to use paragraph elements fixes the issue: -# --question-- - -## --assignment-- +# --assignment-- Watch and follow along to Kevin Powell’s HTML Paragraph and Headings Video above. +# --question-- + ## --text-- How do you create a paragraph in HTML? diff --git a/curriculum/challenges/arabic/16-the-odin-project/top-working-with-text/working-with-text-question-c.md b/curriculum/challenges/arabic/16-the-odin-project/top-working-with-text/working-with-text-question-c.md index 6ccf0e06658..da6e3dd4511 100644 --- a/curriculum/challenges/arabic/16-the-odin-project/top-working-with-text/working-with-text-question-c.md +++ b/curriculum/challenges/arabic/16-the-odin-project/top-working-with-text/working-with-text-question-c.md @@ -20,12 +20,12 @@ But you will probably find yourself using the `strong` element much more in comb Sometimes you will want to make text bold without giving it an important meaning. You’ll learn how to do that in the CSS lessons later in the curriculum. -# --question-- - -## --assignment-- +# --assignment-- Watch Kevin Powell’s HTML Bold and Italic Text Video above. +# --question-- + ## --text-- What element should you use to make text bold and important? diff --git a/curriculum/challenges/arabic/16-the-odin-project/top-working-with-text/working-with-text-question-g.md b/curriculum/challenges/arabic/16-the-odin-project/top-working-with-text/working-with-text-question-g.md index 5f5d141fa46..23881db5be0 100644 --- a/curriculum/challenges/arabic/16-the-odin-project/top-working-with-text/working-with-text-question-g.md +++ b/curriculum/challenges/arabic/16-the-odin-project/top-working-with-text/working-with-text-question-g.md @@ -21,12 +21,12 @@ Writing an HTML comment is simple: You just enclose the comment with ` ``` -# --question-- - -## --assignment-- +# --assignment-- To get some practice working with text in HTML, create a plain blog article page which uses different headings, uses paragraphs, and has some text in the paragraphs bolded and italicized. You can use [Lorem Ipsum](https://loremipsum.io) to generate dummy text, in place of real text as you build your sites. +# --question-- + ## --text-- How do you create HTML comments? diff --git a/curriculum/challenges/arabic/16-the-odin-project/top-working-with-text/working-with-text-question-h.md b/curriculum/challenges/arabic/16-the-odin-project/top-working-with-text/working-with-text-question-h.md index c20b4de097a..29feb0cf613 100644 --- a/curriculum/challenges/arabic/16-the-odin-project/top-working-with-text/working-with-text-question-h.md +++ b/curriculum/challenges/arabic/16-the-odin-project/top-working-with-text/working-with-text-question-h.md @@ -22,9 +22,7 @@ Ordered lists are created using the `
    ` element. Each individual item in them -# --question-- - -## --assignment-- +# --assignment-- Watch the first three minutes of Kevin Powell's video on Ordered and Unordered lists above. @@ -44,6 +42,8 @@ Make an unordered list of places you’d like to visit someday. Make an ordered list of your all time top 5 favorite video games or movies. +# --question-- + ## --text-- What HTML tag is used to create an unordered list? diff --git a/curriculum/challenges/arabic/17-college-algebra-with-python/learn-applications-of-linear-systems/word-problems.md b/curriculum/challenges/arabic/17-college-algebra-with-python/learn-applications-of-linear-systems/word-problems.md index 0a15305c01e..1b2711c96f6 100644 --- a/curriculum/challenges/arabic/17-college-algebra-with-python/learn-applications-of-linear-systems/word-problems.md +++ b/curriculum/challenges/arabic/17-college-algebra-with-python/learn-applications-of-linear-systems/word-problems.md @@ -16,9 +16,7 @@ This first video will look at key words that tell you what math operation to use \- Algebra and Trigonometry by Jay Abramson -# --question-- - -## --assignment-- +# --assignment-- Complete the problems on pages 63, 75, 85, and 118 from "Business Math, a Step-by-Step Handbook (2021)". @@ -26,6 +24,8 @@ Complete the problems on pages 63, 75, 85, and 118 from "Business Math, a Step-b Complete the problems on pages 304, 308, and 321 from "Algebra and Trigonometry". +# --question-- + ## --text-- Which of the following key words indicate subtraction? diff --git a/curriculum/challenges/arabic/17-college-algebra-with-python/learn-business-applications-of-college-algebra/demand-and-revenue.md b/curriculum/challenges/arabic/17-college-algebra-with-python/learn-business-applications-of-college-algebra/demand-and-revenue.md index ca2ea6f7796..0a70a02cf1d 100644 --- a/curriculum/challenges/arabic/17-college-algebra-with-python/learn-business-applications-of-college-algebra/demand-and-revenue.md +++ b/curriculum/challenges/arabic/17-college-algebra-with-python/learn-business-applications-of-college-algebra/demand-and-revenue.md @@ -16,12 +16,12 @@ Here is the Business Math, a Step-by-Step Handbook (2021) by Jean-Paul Oliver -# --question-- - -## --assignment-- +# --assignment-- Complete the problems on pages 155 and 163 from "Business Math, a Step-by-Step Handbook (2021)". +# --question-- + ## --text-- Which of the following business equations is not correct? diff --git a/curriculum/challenges/arabic/17-college-algebra-with-python/learn-fractions-and-decimals/converting-fractions-and-decimals.md b/curriculum/challenges/arabic/17-college-algebra-with-python/learn-fractions-and-decimals/converting-fractions-and-decimals.md index 7386db1e3a1..5224ac7cf0a 100644 --- a/curriculum/challenges/arabic/17-college-algebra-with-python/learn-fractions-and-decimals/converting-fractions-and-decimals.md +++ b/curriculum/challenges/arabic/17-college-algebra-with-python/learn-fractions-and-decimals/converting-fractions-and-decimals.md @@ -12,12 +12,12 @@ The first video will show you how to convert between fractions, decimals, and pe Here is the Colab notebook used in the video. Use this code as a model, and write your own code to convert fractions and decimals. -# --question-- - -## --assignment-- +# --assignment-- Add the code to convert fractions and decimals to your algebra Colab notebook. +# --question-- + ## --text-- Which of the following correctly represents "three hundredths" as a decimal? diff --git a/curriculum/challenges/arabic/17-college-algebra-with-python/learn-fractions-and-decimals/fractions-and-decimals-extra.md b/curriculum/challenges/arabic/17-college-algebra-with-python/learn-fractions-and-decimals/fractions-and-decimals-extra.md index e1ac138f79e..7c367228f0c 100644 --- a/curriculum/challenges/arabic/17-college-algebra-with-python/learn-fractions-and-decimals/fractions-and-decimals-extra.md +++ b/curriculum/challenges/arabic/17-college-algebra-with-python/learn-fractions-and-decimals/fractions-and-decimals-extra.md @@ -12,9 +12,7 @@ The following video will show you one way to set up your Google Colaboratory not Here is the Colab notebook used in this video so you can use it as a model. -# --question-- - -## --assignment-- +# --assignment-- Add the code to factor and solve for a variable to your algebra Colab notebook. @@ -22,6 +20,8 @@ Add the code to factor and solve for a variable to your algebra Colab notebook. Run the code in the following notebook to get practice converting fractions and decimals. As a bonus, look at the code used to generate the practice problems. +# --question-- + ## --text-- Which of the following languages can you not use in Google Colaboratory? diff --git a/curriculum/challenges/arabic/17-college-algebra-with-python/learn-functions-and-graphing/functions-and-graphing-extra.md b/curriculum/challenges/arabic/17-college-algebra-with-python/learn-functions-and-graphing/functions-and-graphing-extra.md index d5516d90fb2..4cc6201ae95 100644 --- a/curriculum/challenges/arabic/17-college-algebra-with-python/learn-functions-and-graphing/functions-and-graphing-extra.md +++ b/curriculum/challenges/arabic/17-college-algebra-with-python/learn-functions-and-graphing/functions-and-graphing-extra.md @@ -12,12 +12,12 @@ This next video will show you the connection between functions and graphing. Not Here is the Colab notebook to go with this video. -# --question-- - -## --assignment-- +# --assignment-- Add code to your algebra Colab notebook for functions and graphing. +# --question-- + ## --text-- What Python library would you import to create arrays that you can graph? diff --git a/curriculum/challenges/arabic/17-college-algebra-with-python/learn-functions-and-graphing/functions.md b/curriculum/challenges/arabic/17-college-algebra-with-python/learn-functions-and-graphing/functions.md index a5f13dca979..d511fecf032 100644 --- a/curriculum/challenges/arabic/17-college-algebra-with-python/learn-functions-and-graphing/functions.md +++ b/curriculum/challenges/arabic/17-college-algebra-with-python/learn-functions-and-graphing/functions.md @@ -12,12 +12,12 @@ This first video will show you what it means to be a function, and then it will Here is the Colab notebook used in this and the next videos. -# --question-- - -## --assignment-- +# --assignment-- Add code to your algebra Colab notebook that creates Python functions for decimal-to-fraction conversions +# --question-- + ## --text-- After defining a function in Python, indent each line of the function how many spaces? diff --git a/curriculum/challenges/arabic/17-college-algebra-with-python/learn-functions-and-graphing/graphing.md b/curriculum/challenges/arabic/17-college-algebra-with-python/learn-functions-and-graphing/graphing.md index ac237fcbcb2..3c170849ede 100644 --- a/curriculum/challenges/arabic/17-college-algebra-with-python/learn-functions-and-graphing/graphing.md +++ b/curriculum/challenges/arabic/17-college-algebra-with-python/learn-functions-and-graphing/graphing.md @@ -12,9 +12,7 @@ This next video will show you the connection between functions and graphing. Not Here is the Colab notebook to go with the last two videos so you can start making your own graphs. -# --question-- - -## --assignment-- +# --assignment-- Add code to your algebra Colab notebook for functions and graphing. @@ -22,6 +20,8 @@ Add code to your algebra Colab notebook for functions and graphing. Run the following notebook to see more ways to create graphs using algebra and Python. +# --question-- + ## --text-- Which of the following would put a blue line on a graph? diff --git a/curriculum/challenges/arabic/17-college-algebra-with-python/learn-how-to-graph-systems-of-equations/graphing-systems.md b/curriculum/challenges/arabic/17-college-algebra-with-python/learn-how-to-graph-systems-of-equations/graphing-systems.md index d9dca33678b..7224ab905a2 100644 --- a/curriculum/challenges/arabic/17-college-algebra-with-python/learn-how-to-graph-systems-of-equations/graphing-systems.md +++ b/curriculum/challenges/arabic/17-college-algebra-with-python/learn-how-to-graph-systems-of-equations/graphing-systems.md @@ -12,12 +12,12 @@ This first video will show you how to graph systems of equations with written ma Here is the Colab notebook used in this video. -# --question-- - -## --assignment-- +# --assignment-- Add code from the video to the algebra notebook you are building, and test it with different functions. +# --question-- + ## --text-- The numpy `linspace()` function takes three arguments to create an array. Which of the following arguments does it not take? diff --git a/curriculum/challenges/arabic/17-college-algebra-with-python/learn-how-to-solve-for-x/how-to-solve-for-x-extra.md b/curriculum/challenges/arabic/17-college-algebra-with-python/learn-how-to-solve-for-x/how-to-solve-for-x-extra.md index 5d9ca07f933..18484302ead 100644 --- a/curriculum/challenges/arabic/17-college-algebra-with-python/learn-how-to-solve-for-x/how-to-solve-for-x-extra.md +++ b/curriculum/challenges/arabic/17-college-algebra-with-python/learn-how-to-solve-for-x/how-to-solve-for-x-extra.md @@ -12,9 +12,7 @@ This video will go deeper, with more examples of how to use SymPy solve. It will Here is the Colab notebook to go along with this video. Use it to add more to the algebra Colab notebook that you are building. -# --question-- - -## --assignment-- +# --assignment-- Add the code for more ways to solve for x from the video to your algebra Colab notebook. @@ -22,6 +20,8 @@ Add the code for more ways to solve for x from the video to your algebra Colab n Open the following Colab notebook, run the cell, and practice solving one and two-step algebra problems. As a bonus, look at the code that generates the practice problems. +# --question-- + ## --text-- If you import sympy and define x as a variable, what would be the output from the following code? diff --git a/curriculum/challenges/arabic/17-college-algebra-with-python/learn-how-to-solve-for-x/solving-for-x.md b/curriculum/challenges/arabic/17-college-algebra-with-python/learn-how-to-solve-for-x/solving-for-x.md index cf99c6cfbd1..359af3680b5 100644 --- a/curriculum/challenges/arabic/17-college-algebra-with-python/learn-how-to-solve-for-x/solving-for-x.md +++ b/curriculum/challenges/arabic/17-college-algebra-with-python/learn-how-to-solve-for-x/solving-for-x.md @@ -12,12 +12,12 @@ This first video will show you the essence of algebra and then how Python code d Here is the Colab notebook to go along with this video. Add the code from the video to your algebra Colab notebook to see how to solve for X using Python. Then change the code if you want, test it, and compare it to paper-and-pencil solving. Remember the equation input needs to be in Python syntax. -# --question-- - -## --assignment-- +# --assignment-- Add the code to solve for x from the video to your algebra Colab notebook. +# --question-- + ## --text-- In Python, what is the library you import to solve algebra problems with variables? diff --git a/curriculum/challenges/arabic/17-college-algebra-with-python/learn-how-to-solve-systems-of-equations/solving-systems.md b/curriculum/challenges/arabic/17-college-algebra-with-python/learn-how-to-solve-systems-of-equations/solving-systems.md index 08847d0f8a6..fff4fb886a7 100644 --- a/curriculum/challenges/arabic/17-college-algebra-with-python/learn-how-to-solve-systems-of-equations/solving-systems.md +++ b/curriculum/challenges/arabic/17-college-algebra-with-python/learn-how-to-solve-systems-of-equations/solving-systems.md @@ -12,12 +12,12 @@ The first video will show you the math behind solving a system of two equations Here is the Colab notebook used in this video. -# --question-- - -## --assignment-- +# --assignment-- Add code to your notebook to solve and graph systems of equations +# --question-- + ## --text-- Which of the following can SymPy do that matplotlib can't do? diff --git a/curriculum/challenges/arabic/17-college-algebra-with-python/learn-linear-functions/linear-equations.md b/curriculum/challenges/arabic/17-college-algebra-with-python/learn-linear-functions/linear-equations.md index c513b57f2eb..e6b1e211b81 100644 --- a/curriculum/challenges/arabic/17-college-algebra-with-python/learn-linear-functions/linear-equations.md +++ b/curriculum/challenges/arabic/17-college-algebra-with-python/learn-linear-functions/linear-equations.md @@ -12,12 +12,12 @@ This video will show you the math behind finding the y-intercept in a linear fun Here is the Colab notebook to go with the last two videos, so you can see the formulas. -# --question-- - -## --assignment-- +# --assignment-- Add code to your algebra Colab notebook to graph a function from points or from equation input. +# --question-- + ## --text-- If you know the slope ("m") and you have one (x,y) coordinate point, which of the following equations could you use to find "b", representing the y-intercept in Python? diff --git a/curriculum/challenges/arabic/17-college-algebra-with-python/learn-ratios-and-proportions/introduction-to-college-algebra-with-python.md b/curriculum/challenges/arabic/17-college-algebra-with-python/learn-ratios-and-proportions/introduction-to-college-algebra-with-python.md index 834b288fe92..66e0414871b 100644 --- a/curriculum/challenges/arabic/17-college-algebra-with-python/learn-ratios-and-proportions/introduction-to-college-algebra-with-python.md +++ b/curriculum/challenges/arabic/17-college-algebra-with-python/learn-ratios-and-proportions/introduction-to-college-algebra-with-python.md @@ -16,12 +16,12 @@ This first video includes an introduction to the course, how it will work, and h \- Algebra and Trigonometry by Jay Abramson -# --question-- - -## --assignment-- +# --assignment-- Create an algebra Colab notebook on your google drive so you can follow along with the videos. +# --question-- + ## --text-- When adding text in Google Colab, what symbol would you use to create a heading that will appear in the table of contents? diff --git a/curriculum/challenges/arabic/17-college-algebra-with-python/learn-ratios-and-proportions/ratios-and-proportions-extra.md b/curriculum/challenges/arabic/17-college-algebra-with-python/learn-ratios-and-proportions/ratios-and-proportions-extra.md index 663f0cc63e5..170a6679d68 100644 --- a/curriculum/challenges/arabic/17-college-algebra-with-python/learn-ratios-and-proportions/ratios-and-proportions-extra.md +++ b/curriculum/challenges/arabic/17-college-algebra-with-python/learn-ratios-and-proportions/ratios-and-proportions-extra.md @@ -10,12 +10,12 @@ dashedName: ratios-and-proportions-extra The last video in this section will show you how to use proportions in other applications, such as currency exchange rates and unit conversion. It will also show you more about setting up your notebook and working through the practice assignment. -# --question-- - -## --assignment-- +# --assignment-- Open the following Colab notebook, run the cell, and practice solving one-step algebra problems. As a bonus, look at the code that generates the practice problems. +# --question-- + ## --text-- What is another way to write 0.9999... (repeating 9)? diff --git a/curriculum/challenges/arabic/17-college-algebra-with-python/learn-ratios-and-proportions/solving-proportions.md b/curriculum/challenges/arabic/17-college-algebra-with-python/learn-ratios-and-proportions/solving-proportions.md index 8371ec1655d..14a060f564e 100644 --- a/curriculum/challenges/arabic/17-college-algebra-with-python/learn-ratios-and-proportions/solving-proportions.md +++ b/curriculum/challenges/arabic/17-college-algebra-with-python/learn-ratios-and-proportions/solving-proportions.md @@ -12,12 +12,12 @@ Now we get to the math content. This video will show you how to set up and solve Here is the Colab notebook to go along with this video. If you have not done so yet, set up your algebra Colab notebook from the last video. Then, add the code from this video to it. -# --question-- - -## --assignment-- +# --assignment-- Add the code from the video to the algebra Colab notebook you created in the first step. +# --question-- + ## --text-- In solving a proportion, if one numerator is zero, does the other numerator have to be zero for the statement to be true? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md index 04d809176cc..d5de7121c15 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-do-while/ and complete all the tasks for the "Add Looping Logic to Your Code Using the do-while and while Statements in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Add Looping Logic to Your Code Using the `do`-`while` and `while` Statements in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- A developer needs to iterate through an array of items to find one that matches a certain criteria. Which is the best iteration statement for this purpose? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md index d0087ce5be8..ee50cb1473b 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-switch-case/ and complete all the tasks for the "Branch the Flow of Code Using the switch-case Construct in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Branch the Flow of Code Using the `switch`-`case` Construct in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What is the purpose of the `break` keyword? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md index b34b20dcdd7..a837a683f26 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/challenge-project-develop-branching-looping-structures-c-sharp/ and complete all the tasks for the "Challenge Project - Develop Branching and Looping Structures in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Develop Branching and Looping Structures in C# challenge project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- A developer needs to create an iteration statement. Under what condition is a `while` statement a better choice than a `do` statement? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md index bf5a4084719..68fae6e49b2 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-code-blocks/ and complete all the tasks for the "Control Variable Scope and Logic Using Code Blocks in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Control Variable Scope and Logic Using Code Blocks in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following statements is true about showing/removing the curly braces for code blocks associated with an `if` statement? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md index 3f503f69e32..f1d60edd59a 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-evaluate-boolean-expressions/ and complete all the tasks for the "Evaluate Boolean Expressions to Make Decisions in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Evaluate Boolean Expressions to Make Decisions in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following lines of code is a valid use of the conditional operator? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md index f23006f2793..a678783a004 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-develop-conditional-branching-looping/ and complete all the tasks for the "Guided Project - Develop Conditional Branching and Looping Structures in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Develop Conditional Branching and Looping Structures in C# guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- When is it appropriate to use a `switch-case` construct rather than a `if-elseif-else` construct? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md index 29f7fbe4ca9..d85cd9e79c5 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-for/ and complete all the tasks for the "Iterate Through a Code Block Using the for Statement in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Iterate Through a Code Block Using the `for` Statement in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following `for` statements is correct? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md index 597a1daa754..b4c34681581 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-if-elseif-else/ and complete all the tasks for the "Add Decision Logic to Your Code Using if, else, and else if statements in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Add Decision Logic to Your Code Using `if`, `else`, and `else if` Statements in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the choices below is not a valid operator in C#? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md index aeeed01382f..64ee30462ef 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-call-methods/ and complete all the tasks for the "Call Methods From the .NET Class Library Using C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Call Methods from the .NET Class Library Using C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What is an object? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md index 4124a3e48d0..c19935da753 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/challenge-project-arrays-iteration-selection/ and complete all the tasks for the "Challenge Project - Develop foreach and if-elseif-else Structures to Process Array Data in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Develop `foreach` and `if`-`elseif`-`else` Structures to Process Array Data in C# challenge project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- A developer is working with two other developers to update a collection of applications. The developers will use code comments during the update process. Which of the following describes an appropriate use of code comments? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md index ff048d90565..221d8229223 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-readable-code/ and complete all the tasks for the "Create Readable Code with Conventions, Whitespace, and Comments in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Create Readable Code with Conventions, Whitespace, and Comments in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following is a bad reason to use a code comment? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md index 94f87df9df4..af1892b527b 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-arrays-iteration-selection/ and complete all the tasks for the "Guided Project - Develop foreach and if-elseif-else Structures to Process Array Data in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Develop `foreach` and `if`-`elseif`-`else` Structures to Process Array Data in C# guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- A developer writes an application that uses a `foreach` loop to iterate through an array containing 20 elements. After the application is complete, the developer learns that the array must be updated to include 40 elements. The application needs to examine all 40 array elements. Which of the following items describes the required code update? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md index 293d196cf6f..772087d66a9 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/install-configure-visual-studio-code/ and complete all the tasks for the "Install and Configure Visual Studio Code" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Install and Configure Visual Studio Code module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following choices provides the best description of an Integrated Development Environment (IDE)? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md index 2e1bc53cae6..33713c19393 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-arrays/ and complete all the tasks for the "Store and Iterate Through Sequences of Data Using Arrays and the foreach Statement in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Store and Iterate Through Sequences of Data Using Arrays and the `foreach` Statement in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following foreach statements is syntactically correct? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md index 1f9c05bfa10..18794d3b5af 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/challenge-project-create-mini-game/ and complete all the tasks for the "Challenge Project - Create a Mini-Game" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Create a Mini-Game challenge project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- A developer wants to create a method that returns a value in an array. Which of the following options would be a good choice for a method signature? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md index f30799e881f..01aaf75c313 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/create-c-sharp-methods-return-values/ and complete all the tasks for the "Create C# Methods that Return Values" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Create C# Methods that Return Values module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following options correctly returns a `string` value? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md index c576ee4c155..44f48d4b8c9 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/create-c-sharp-methods-parameters/ and complete all the tasks for the "Create C# Methods with Parameters" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Create C# Methods with Parameters module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Given the method signature, diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md index aea8d011c19..15877a13f97 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-visit-petting-zoo/ and complete all the tasks for the "Guided Project - Plan a Petting Zoo Visit" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Plan a Petting Zoo Visit guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What is the purpose of defining an optional parameter in a method? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md index c7bccb05699..7e6313f4a57 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/write-first-c-sharp-method/ and complete all the tasks for the "Write Your First C# Method" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Write Your First C# Method module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following correctly declares a method? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md index 52415dc17c0..88425acb0d1 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/challenge-project-debug-c-sharp-console-application/ and complete all the tasks for the "Challenge Project - Debug a C# Console Application Using Visual Studio Code" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Debug a C# Console Application Using Visual Studio Code challenge project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following options can be used set a breakpoint in Visual Studio Code? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md index 3a43bedeeff..82396ebc624 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/create-throw-exceptions-c-sharp/ and complete all the tasks for the "Create and Throw Exceptions in C# Console Applications" module. This is **required** earn to the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Create and Throw Exceptions in C# Console Applications module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- When should a method throw an exception? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md index c96c6dbf3d0..33d1914183f 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-debug-handle-exceptions-c-sharp-console-application/ and complete all the tasks for the "Guided Project - Debug and Handle Exceptions in a C# Console Application Using Visual Studio Code" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Debug and Handle Exceptions in a C# Console Application Using Visual Studio Code guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- When is an `ArgumentOutOfRangeException` exception thrown? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md index a437297321d..d77786e00f0 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/implement-exception-handling-c-sharp/ and complete all the tasks for the "Implement Exception Handling in C# Console Applications" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Implement Exception Handling in C# Console Applications module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- When is an `ArrayTypeMismatchException` exception thrown? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md index cf989a73210..eaf0a57a505 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/implement-visual-studio-code-debugging-tools/ and complete all the tasks for the "Implement the Visual Studio Code Debugging Tools for C#" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Implement the Visual Studio Code Debugging Tools for C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which section of the RUN AND DEBUG view is used to track the current point of execution within the running application? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md index fb54c916c41..66529f25875 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/review-principles-code-debugging-exception-handling-c-sharp/ and complete all the tasks for the "Review the Principles of Code Debugging and Exception Handling" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Review the Principles of Code Debugging and Exception Handling module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What is the relationship between the type of exception and the information it contains? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md index 57357fa507f..3283ae458e5 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/challenge-project-work-variable-data-c-sharp/ and complete all the tasks for the "Challenge Project - Work with Variable Data in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Work with Variable Data in C# challenge project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- To sort a string array, why is it important to use the `String.Trim()` method on each array element before sorting? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md index cfc6e5f6417..90ad0c24ddc 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-choose-data-type/ and complete all the tasks for the "Choose the Correct Data Type in Your C# Code" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Choose the Correct Data Type in Your C# Code module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- A piece of code must store whole numeric values between negative and positive `1,000,000`. Which data type should you choose? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md index 7e3cccdbf6c..2f81848ec0c 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-convert-cast/ and complete all the tasks for the "Convert Data Types Using Casting and Conversion Techniques in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Convert Data Types Using Casting and Conversion Techniques in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What type of action is being performed when changing a `float` into an `int`? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md index 25db424abb8..4f13971f084 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-format-strings/ and complete all the tasks for the "Format Alphanumeric Data for Presentation in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Format Alphanumeric Data for Presentation in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- For the C# code `Console.WriteLine("C110".PadLeft(6, '0'));`, which is the expected output? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md index 41a67d95996..d70b33e0034 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-work-variable-data-c-sharp/ and complete all the tasks for the "Guided Project - Work with Variable Data in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Work with Variable Data in C# guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- For the code `decimal.TryParse(numberString, out myConvert))` when the type of `numberString` is a String. diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md index 7a75db01628..f3193f3dfc2 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-modify-content/ and complete all the tasks for the "Modify the Content of Strings Using Built-In String Data Type Methods in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Modify the Content of Strings Using Built-In String Data Type Methods in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which method finds the next index of either the `-` char, the `=` char, or the `_` char? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md index f51f67bd1d7..14353de4a63 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-arrays-operations/ and complete all the tasks for the "Perform Operations on Arrays Using Helper Methods in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Perform Operations on Arrays Using Helper Methods in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which method changes the order of items in an `string` array? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md index 7a7836123bb..131c73af39c 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-calculate-print-student-grades/ and complete all the tasks for the "Guided Project - Calculate and Print Student Grades" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Calculate and Print Student Grades guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What is wrong with the following code? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md index f4d5d576477..6a5491e8f12 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-calculate-final-gpa/ and complete all the tasks for the "Guided Project - Calculate Final GPA" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Calculate Final GPA guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Suppose `decimal gradePointAverage = 3.99872831m;`. diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md index 09ea0a4fd28..71e056d641f 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-basic-operations/ and complete all the tasks for the "Perform Basic Operations on Numbers in C#" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Perform Basic Operations on Numbers in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What is the value of the following result? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md index 8fe6df7466b..6a00bd662df 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-basic-formatting/ and complete all the tasks for the "Perform Basic String Formatting in C#" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Perform Basic String Formatting in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following lines of code correctly uses string interpolation assuming that the variable `value` is a string? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md index 8c1bb0619d3..f229f0d8387 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-literals-variables/ and complete all the tasks for the "Store and Retrieve Data Using Literal and Variable Values in C#" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Store and Retrieve Data Using Literal and Variable Values in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following lines of code creates a variable correctly? diff --git a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md index c2b06ef0c32..e9da470c2a1 100644 --- a/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md +++ b/curriculum/challenges/arabic/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-write-first/ and complete all the tasks in the "Write Your First C# Code" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Write Your First C# Code module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What is the difference between `Console.Write` and `Console.WriteLine`? diff --git a/curriculum/challenges/chinese-traditional/16-the-odin-project/top-learn-html-foundations/html-foundations-question-a.md b/curriculum/challenges/chinese-traditional/16-the-odin-project/top-learn-html-foundations/html-foundations-question-a.md index 26dcaf81d51..138c596a766 100644 --- a/curriculum/challenges/chinese-traditional/16-the-odin-project/top-learn-html-foundations/html-foundations-question-a.md +++ b/curriculum/challenges/chinese-traditional/16-the-odin-project/top-learn-html-foundations/html-foundations-question-a.md @@ -26,12 +26,12 @@ HTML has a vast list of predefined tags that you can use to create all kinds of Using the correct elements for content is called semantic HTML. You will explore this in much more depth later on in the curriculum. -# --question-- - -## --assignment-- +# --assignment-- Watch Kevin Powell’s [Introduction to HTML video](https://www.youtube.com/watch?v=LGQuIIv2RVA&list=PL4-IK0AVhVjM0xE0K2uZRvsM7LkIhsPT-) +# --question-- + ## --text-- What are HTML tags? diff --git a/curriculum/challenges/chinese-traditional/16-the-odin-project/top-learn-html-foundations/html-foundations-question-e.md b/curriculum/challenges/chinese-traditional/16-the-odin-project/top-learn-html-foundations/html-foundations-question-e.md index 58e4fab1b96..0a6e5658f3d 100644 --- a/curriculum/challenges/chinese-traditional/16-the-odin-project/top-learn-html-foundations/html-foundations-question-e.md +++ b/curriculum/challenges/chinese-traditional/16-the-odin-project/top-learn-html-foundations/html-foundations-question-e.md @@ -11,12 +11,12 @@ HTML and CSS are two languages that work together to create everything that you Many helpful resources out there keep referring to HTML and CSS as programming languages, but if you want to get technical, labeling them as such is not quite accurate. This is because they are only concerned with presenting information. They are not used to program logic. JavaScript, which you will learn in the next section, is a programming language because it’s used to make webpages do things. Yet, there is quite a lot you can do with just HTML and CSS, and you will definitely need them both. Throughout our curriculum, the following lessons focus on giving you the tools you need to succeed once you reach JavaScript content. -# --question-- - -## --assignment-- +# --assignment-- Read the HTML vs CSS vs JavaScript article. It is a quick overview of the relationships between HTML, CSS, and JavaScript. +# --question-- + ## --text-- Which of the following statements is true? @@ -37,5 +37,3 @@ HTML and CSS are used to add style to a webpage, and JavaScript is used to creat ## --video-solution-- 2 - - diff --git a/curriculum/challenges/chinese-traditional/16-the-odin-project/top-learn-html-foundations/html-foundations-question-g.md b/curriculum/challenges/chinese-traditional/16-the-odin-project/top-learn-html-foundations/html-foundations-question-g.md index 16299d58648..29cc79ceab3 100644 --- a/curriculum/challenges/chinese-traditional/16-the-odin-project/top-learn-html-foundations/html-foundations-question-g.md +++ b/curriculum/challenges/chinese-traditional/16-the-odin-project/top-learn-html-foundations/html-foundations-question-g.md @@ -12,9 +12,7 @@ The final element needed to complete the HTML boilerplate is the `` elemen To complete the boilerplate, add a `body` element to the `index.html` file. The `body` element also goes within the `html` element and is always below the `head` element, like so: -# --question-- - -## --assignment-- +# --assignment-- Watch and follow along to Kevin Powell’s brilliant Building your first web page video above. @@ -26,6 +24,8 @@ Build some muscle memory by deleting the contents of the `index.html` file and t Run your boilerplate through this [HTML validator](https://www.freeformatter.com/html-validator.html). Validators ensure your markup is correct and are an excellent learning tool, as they provide feedback on syntax errors you may be making often and aren’t aware of, such as missing closing tags and extra spaces in your HTML. +# --question-- + ## --text-- What is the purpose of the `body` element? diff --git a/curriculum/challenges/chinese-traditional/16-the-odin-project/top-links-and-images/links-and-images-question-a.md b/curriculum/challenges/chinese-traditional/16-the-odin-project/top-links-and-images/links-and-images-question-a.md index b4d237448f3..09759d1d3e7 100644 --- a/curriculum/challenges/chinese-traditional/16-the-odin-project/top-links-and-images/links-and-images-question-a.md +++ b/curriculum/challenges/chinese-traditional/16-the-odin-project/top-links-and-images/links-and-images-question-a.md @@ -39,12 +39,12 @@ By default, any text wrapped with an anchor tag without a `href` attribute will It’s worth noting you can use anchor tags to link to any kind of resource on the internet, not just other HTML documents. You can link to videos, pdf files, images, and so on, but for the most part, you will be linking to other HTML documents. -# --question-- - -## --assignment-- +# --assignment-- Watch Kevin Powell’s HTML Links video above. +# --question-- + ## --text-- What HTML tag is used to create a link? diff --git a/curriculum/challenges/chinese-traditional/16-the-odin-project/top-links-and-images/links-and-images-question-d.md b/curriculum/challenges/chinese-traditional/16-the-odin-project/top-links-and-images/links-and-images-question-d.md index 37eebffbabf..19e8da36314 100644 --- a/curriculum/challenges/chinese-traditional/16-the-odin-project/top-links-and-images/links-and-images-question-d.md +++ b/curriculum/challenges/chinese-traditional/16-the-odin-project/top-links-and-images/links-and-images-question-d.md @@ -85,12 +85,12 @@ In many cases, this will work just fine; however, you can still run into unexpec ``` -# --question-- - -## --assignment-- +# --assignment-- Watch Kevin Powell’s HTML File Structure video above. +# --question-- + ## --text-- What is the difference between an absolute and a relative link? diff --git a/curriculum/challenges/chinese-traditional/16-the-odin-project/top-links-and-images/links-and-images-question-e.md b/curriculum/challenges/chinese-traditional/16-the-odin-project/top-links-and-images/links-and-images-question-e.md index ae008078088..8ac3815d177 100644 --- a/curriculum/challenges/chinese-traditional/16-the-odin-project/top-links-and-images/links-and-images-question-e.md +++ b/curriculum/challenges/chinese-traditional/16-the-odin-project/top-links-and-images/links-and-images-question-e.md @@ -71,12 +71,12 @@ The `alt` attribute is used to describe an image. It will be used in place of th This is how the The Odin Project logo example you used earlier looks with an `alt` attribute included: -# --question-- - -## --assignment-- +# --assignment-- Watch Kevin Powell’s HTML Images Video above. +# --question-- + ## --text-- Which tag is used to display an image? diff --git a/curriculum/challenges/chinese-traditional/16-the-odin-project/top-links-and-images/links-and-images-question-h.md b/curriculum/challenges/chinese-traditional/16-the-odin-project/top-links-and-images/links-and-images-question-h.md index 71157081ae7..f7ed108d84e 100644 --- a/curriculum/challenges/chinese-traditional/16-the-odin-project/top-links-and-images/links-and-images-question-h.md +++ b/curriculum/challenges/chinese-traditional/16-the-odin-project/top-links-and-images/links-and-images-question-h.md @@ -70,12 +70,12 @@ The `alt` attribute is used to describe an image. It will be used in place of th This is how the The Odin Project logo example you used earlier looks with an alt attribute included: -# --question-- - -## --assignment-- +# --assignment-- Read about the four main image formats that can be used on the web. +# --question-- + ## --text-- What are the four main image formats that you can use for images on the web? diff --git a/curriculum/challenges/chinese-traditional/16-the-odin-project/top-the-box-model/the-box-model-question-a.md b/curriculum/challenges/chinese-traditional/16-the-odin-project/top-the-box-model/the-box-model-question-a.md index 81cc2d54518..e2882cdb454 100644 --- a/curriculum/challenges/chinese-traditional/16-the-odin-project/top-the-box-model/the-box-model-question-a.md +++ b/curriculum/challenges/chinese-traditional/16-the-odin-project/top-the-box-model/the-box-model-question-a.md @@ -13,12 +13,12 @@ To open up the inspector, you can right-click on any element of a webpage and cl Don’t get overwhelmed with all the tools you’re now seeing! For this lesson, we want to focus on the Elements and Styles panes. -# --question-- - -## --assignment-- +# --assignment-- Play around with Chrome Dev Tools and see if you can answer the following question. +# --question-- + ## --text-- Which panes should you focus on in the Chrome Dev Tools for inspecting and debugging HTML and CSS? diff --git a/curriculum/challenges/chinese-traditional/16-the-odin-project/top-the-box-model/the-box-model-question-c.md b/curriculum/challenges/chinese-traditional/16-the-odin-project/top-the-box-model/the-box-model-question-c.md index 84cee19aea0..25a32e0f581 100644 --- a/curriculum/challenges/chinese-traditional/16-the-odin-project/top-the-box-model/the-box-model-question-c.md +++ b/curriculum/challenges/chinese-traditional/16-the-odin-project/top-the-box-model/the-box-model-question-c.md @@ -14,12 +14,12 @@ When an element is selected, the Styles tab will show all the currently applied ![Overwritten style](https://cdn.statically.io/gh/TheOdinProject/curriculum/f8fd38fc62578d8e8368f5303126215a492847f0/foundations/html_css/inspecting-html-and-css/imgs/03.png) -# --question-- - -## --assignment-- +# --assignment-- Play around with Chrome Dev Tools and see if you can answer the following question. +# --question-- + ## --text-- Which feature in the Elements pane allows you to select any element on a webpage by hovering over it? diff --git a/curriculum/challenges/chinese-traditional/16-the-odin-project/top-the-box-model/the-box-model-question-d.md b/curriculum/challenges/chinese-traditional/16-the-odin-project/top-the-box-model/the-box-model-question-d.md index 4d882631471..a4d810760a5 100644 --- a/curriculum/challenges/chinese-traditional/16-the-odin-project/top-the-box-model/the-box-model-question-d.md +++ b/curriculum/challenges/chinese-traditional/16-the-odin-project/top-the-box-model/the-box-model-question-d.md @@ -14,13 +14,12 @@ When an element is selected, the Styles tab will show all the currently applied ![Overwritten style](https://cdn.statically.io/gh/TheOdinProject/curriculum/f8fd38fc62578d8e8368f5303126215a492847f0/foundations/html_css/inspecting-html-and-css/imgs/03.png) - -# --question-- - -## --assignment-- +# --assignment-- Play around with Chrome Dev Tools and see if you can answer the following question. +# --question-- + ## --text-- In the Styles pane, what information can you view about an element when it is selected? diff --git a/curriculum/challenges/chinese-traditional/16-the-odin-project/top-the-box-model/the-box-model-question-f.md b/curriculum/challenges/chinese-traditional/16-the-odin-project/top-the-box-model/the-box-model-question-f.md index a91d049aee3..96e12157b13 100644 --- a/curriculum/challenges/chinese-traditional/16-the-odin-project/top-the-box-model/the-box-model-question-f.md +++ b/curriculum/challenges/chinese-traditional/16-the-odin-project/top-the-box-model/the-box-model-question-f.md @@ -16,13 +16,12 @@ Every single thing on a webpage is a rectangular box. These boxes can have other } ``` - -# --question-- - -## --assignment-- +# --assignment-- Add a border to every element on the page and see how the boxes are laid out. +# --question-- + ## --text-- What is the fundamental concept in CSS that helps you understand the structure of elements as rectangular boxes? diff --git a/curriculum/challenges/chinese-traditional/16-the-odin-project/top-the-box-model/the-box-model-question-g.md b/curriculum/challenges/chinese-traditional/16-the-odin-project/top-the-box-model/the-box-model-question-g.md index b8c981a7aa9..fdd4840cfa0 100644 --- a/curriculum/challenges/chinese-traditional/16-the-odin-project/top-the-box-model/the-box-model-question-g.md +++ b/curriculum/challenges/chinese-traditional/16-the-odin-project/top-the-box-model/the-box-model-question-g.md @@ -20,12 +20,12 @@ Be sure to study the diagrams carefully. ![the box model](https://cdn.statically.io/gh/TheOdinProject/curriculum/main/foundations/html_css/css-foundations/the-box-model/imgs/box-model.png) -# --question-- - -## --assignment-- +# --assignment-- Add a border to every element on the page and see how the boxes are laid out. +# --question-- + ## --text-- From inside to outside, what is the order of box-model properties? diff --git a/curriculum/challenges/chinese-traditional/16-the-odin-project/top-working-with-text/working-with-text-question-a.md b/curriculum/challenges/chinese-traditional/16-the-odin-project/top-working-with-text/working-with-text-question-a.md index 8698b62aca8..33176924828 100644 --- a/curriculum/challenges/chinese-traditional/16-the-odin-project/top-working-with-text/working-with-text-question-a.md +++ b/curriculum/challenges/chinese-traditional/16-the-odin-project/top-working-with-text/working-with-text-question-a.md @@ -32,12 +32,12 @@ Changing our example from before to use paragraph elements fixes the issue: -# --question-- - -## --assignment-- +# --assignment-- Watch and follow along to Kevin Powell’s HTML Paragraph and Headings Video above. +# --question-- + ## --text-- How do you create a paragraph in HTML? diff --git a/curriculum/challenges/chinese-traditional/16-the-odin-project/top-working-with-text/working-with-text-question-c.md b/curriculum/challenges/chinese-traditional/16-the-odin-project/top-working-with-text/working-with-text-question-c.md index 6ccf0e06658..da6e3dd4511 100644 --- a/curriculum/challenges/chinese-traditional/16-the-odin-project/top-working-with-text/working-with-text-question-c.md +++ b/curriculum/challenges/chinese-traditional/16-the-odin-project/top-working-with-text/working-with-text-question-c.md @@ -20,12 +20,12 @@ But you will probably find yourself using the `strong` element much more in comb Sometimes you will want to make text bold without giving it an important meaning. You’ll learn how to do that in the CSS lessons later in the curriculum. -# --question-- - -## --assignment-- +# --assignment-- Watch Kevin Powell’s HTML Bold and Italic Text Video above. +# --question-- + ## --text-- What element should you use to make text bold and important? diff --git a/curriculum/challenges/chinese-traditional/16-the-odin-project/top-working-with-text/working-with-text-question-g.md b/curriculum/challenges/chinese-traditional/16-the-odin-project/top-working-with-text/working-with-text-question-g.md index 5f5d141fa46..23881db5be0 100644 --- a/curriculum/challenges/chinese-traditional/16-the-odin-project/top-working-with-text/working-with-text-question-g.md +++ b/curriculum/challenges/chinese-traditional/16-the-odin-project/top-working-with-text/working-with-text-question-g.md @@ -21,12 +21,12 @@ Writing an HTML comment is simple: You just enclose the comment with ` ``` -# --question-- - -## --assignment-- +# --assignment-- To get some practice working with text in HTML, create a plain blog article page which uses different headings, uses paragraphs, and has some text in the paragraphs bolded and italicized. You can use [Lorem Ipsum](https://loremipsum.io) to generate dummy text, in place of real text as you build your sites. +# --question-- + ## --text-- How do you create HTML comments? diff --git a/curriculum/challenges/chinese-traditional/16-the-odin-project/top-working-with-text/working-with-text-question-h.md b/curriculum/challenges/chinese-traditional/16-the-odin-project/top-working-with-text/working-with-text-question-h.md index c20b4de097a..29feb0cf613 100644 --- a/curriculum/challenges/chinese-traditional/16-the-odin-project/top-working-with-text/working-with-text-question-h.md +++ b/curriculum/challenges/chinese-traditional/16-the-odin-project/top-working-with-text/working-with-text-question-h.md @@ -22,9 +22,7 @@ Ordered lists are created using the `
      ` element. Each individual item in them -# --question-- - -## --assignment-- +# --assignment-- Watch the first three minutes of Kevin Powell's video on Ordered and Unordered lists above. @@ -44,6 +42,8 @@ Make an unordered list of places you’d like to visit someday. Make an ordered list of your all time top 5 favorite video games or movies. +# --question-- + ## --text-- What HTML tag is used to create an unordered list? diff --git a/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-applications-of-linear-systems/word-problems.md b/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-applications-of-linear-systems/word-problems.md index 16d561f5327..c694a7d9bf2 100644 --- a/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-applications-of-linear-systems/word-problems.md +++ b/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-applications-of-linear-systems/word-problems.md @@ -16,9 +16,7 @@ dashedName: word-problems \- 《代數與三角學》,作者 Jay Abramson -# --question-- - -## --任務-- +# --任務-- 完成《商業數學分步手冊(2021)》第 63、75、85 和 118 頁的問題。 @@ -26,6 +24,8 @@ dashedName: word-problems 完成《代數與三角學》第 304、308 和 321 頁的問題。 +# --question-- + ## --text-- 以下哪些關鍵詞表示減法? diff --git a/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-business-applications-of-college-algebra/demand-and-revenue.md b/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-business-applications-of-college-algebra/demand-and-revenue.md index b42bfddb4ff..dbb0f211836 100644 --- a/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-business-applications-of-college-algebra/demand-and-revenue.md +++ b/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-business-applications-of-college-algebra/demand-and-revenue.md @@ -16,12 +16,12 @@ dashedName: demand-and-revenue \- 《商業數學分步手冊(2021)》,作者 Jean-Paul Oliver -# --question-- - -## --作業-- +# --作業-- 完成《商業數學分步手冊(2021)》第 155 和 163 頁的問題。 +# --question-- + ## --text-- 下列哪個業務方程式不正確? diff --git a/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-fractions-and-decimals/converting-fractions-and-decimals.md b/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-fractions-and-decimals/converting-fractions-and-decimals.md index 3275b5b8231..a4c0bd17d10 100644 --- a/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-fractions-and-decimals/converting-fractions-and-decimals.md +++ b/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-fractions-and-decimals/converting-fractions-and-decimals.md @@ -12,12 +12,12 @@ dashedName: converting-fractions-and-decimals 這是視頻中使用的 Colab 筆記本,使用此代碼作爲模型,自己寫代碼來轉換分數和小數。 -# --question-- - -## --任務-- +# --任務-- 在你的代數 Colab 筆記本上添加轉換分數和小數的代碼。 +# --question-- + ## --text-- 以下哪項以小數正確表示“百分之三”? diff --git a/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-fractions-and-decimals/fractions-and-decimals-extra.md b/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-fractions-and-decimals/fractions-and-decimals-extra.md index 010e2f4f47c..6cfbc8d1bcc 100644 --- a/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-fractions-and-decimals/fractions-and-decimals-extra.md +++ b/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-fractions-and-decimals/fractions-and-decimals-extra.md @@ -12,9 +12,7 @@ dashedName: fractions-and-decimals-extra 這是這個視頻中用到的 Colab 筆記本,你可以把它作爲一個模型。 -# --question-- - -## --任務-- +# --任務-- 在你的代數 Colab 筆記本上添加因數和求解變量的代碼。 @@ -22,6 +20,8 @@ dashedName: fractions-and-decimals-extra 在下面的筆記本中運行代碼以練習轉換分數和小數。作爲獎勵,看看用來產生練習問題的代碼。 +# --question-- + ## --text-- 你不能在 Google Colaboratory 中使用以下哪種語言? diff --git a/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-functions-and-graphing/functions-and-graphing-extra.md b/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-functions-and-graphing/functions-and-graphing-extra.md index 212acb526c0..37812b5311d 100644 --- a/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-functions-and-graphing/functions-and-graphing-extra.md +++ b/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-functions-and-graphing/functions-and-graphing-extra.md @@ -12,12 +12,12 @@ dashedName: functions-and-graphing-extra 這是和視頻配套的 Colab 筆記本。 -# --question-- - -## --assignment-- +# --assignment-- 在你的代數 Colab 筆記本上添加代碼,用於函數和圖像。 +# --question-- + ## --text-- 你會導入哪個 Python 庫來創建可以繪圖的數組? diff --git a/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-functions-and-graphing/functions.md b/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-functions-and-graphing/functions.md index 4eab5e53e4b..9295596707a 100644 --- a/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-functions-and-graphing/functions.md +++ b/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-functions-and-graphing/functions.md @@ -12,12 +12,12 @@ dashedName: functions 這是這個和下一個視頻中用到的 Colab 筆記本。 -# --question-- - -## --assignment-- +# --assignment-- 在你的代數 Colab 筆記本上添加代碼,創建用於小數到分數轉換的 Python 函數。 +# --question-- + ## --text-- 在 Python 中定義了一個函數後,將函數的每一行縮進多少個空格? diff --git a/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-functions-and-graphing/graphing.md b/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-functions-and-graphing/graphing.md index 633b99e5abb..9bdbea4910d 100644 --- a/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-functions-and-graphing/graphing.md +++ b/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-functions-and-graphing/graphing.md @@ -12,9 +12,7 @@ dashedName: graphing 這是和上兩個視頻配套的 Colab 筆記本,這樣你可以開始製作你自己的圖像。 -# --question-- - -## --assignment-- +# --assignment-- 在你的代數 Colab 筆記本上添加代碼,用於函數和圖像。 @@ -22,6 +20,8 @@ dashedName: graphing 運行下面的筆記本看看使用代數和 Python 創建圖像的更多方法。 +# --question-- + ## --text-- 以下哪種情況會在圖像上畫出一條藍線? diff --git a/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-how-to-graph-systems-of-equations/graphing-systems.md b/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-how-to-graph-systems-of-equations/graphing-systems.md index 660b5f3566a..c7b9c8c5d90 100644 --- a/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-how-to-graph-systems-of-equations/graphing-systems.md +++ b/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-how-to-graph-systems-of-equations/graphing-systems.md @@ -12,12 +12,12 @@ This first video will show you how to graph systems of equations with written ma 這是這個視頻中用到的 Colab 筆記本。 -# --question-- - -## --任務-- +# --任務-- 將視頻中的代碼添加到你正在創建的代數筆記本中,並使用不同的函數進行測試。 +# --question-- + ## --text-- numpy `linspace()` 函數需要三個參數來創建一個數組。 它不採用以下哪個參數? diff --git a/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-how-to-solve-for-x/how-to-solve-for-x-extra.md b/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-how-to-solve-for-x/how-to-solve-for-x-extra.md index 4854c7bd387..d98ca7e1fbe 100644 --- a/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-how-to-solve-for-x/how-to-solve-for-x-extra.md +++ b/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-how-to-solve-for-x/how-to-solve-for-x-extra.md @@ -12,9 +12,7 @@ dashedName: how-to-solve-for-x-extra 這是和視頻配套的 Colab 筆記本。用它來爲你正在創建的代數 Colab 筆記本添加更多內容。 -# --question-- - -## --任務-- +# --任務-- 將視頻中更多求解 x 的方法的代碼添加到你的代數 Colab 筆記本中。 @@ -22,6 +20,8 @@ dashedName: how-to-solve-for-x-extra 打開以下 Colab 筆記本,運行單元格,然後練習解決一步和兩步的代數問題。作爲獎勵,看看生成練習題的代碼。 +# --question-- + ## --text-- 如果你導入 sympy 並定義 x 爲變量,下面的代碼會有什麼輸出? diff --git a/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-how-to-solve-for-x/solving-for-x.md b/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-how-to-solve-for-x/solving-for-x.md index aa8ec396c77..c01679db989 100644 --- a/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-how-to-solve-for-x/solving-for-x.md +++ b/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-how-to-solve-for-x/solving-for-x.md @@ -12,12 +12,12 @@ dashedName: solving-for-x 這是和視頻配套的 Colab 筆記本。將視頻中的代碼添加到你的代數 Colab 筆記本中,看看如何用 Python 求解 X。 然後,如果你想的話,修改代碼,進行測試,並與用紙筆解題的方法進行比較。 記住,方程輸入需要使用 Python 語法。 -# --question-- - -## --任務-- +# --任務-- 將視頻中求解 x 的方法的代碼添加到你的代數 Colab 筆記本中。 +# --question-- + ## --text-- 在 Python 中,你導入什麼庫來解決帶有變量的代數問題? diff --git a/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-how-to-solve-systems-of-equations/solving-systems.md b/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-how-to-solve-systems-of-equations/solving-systems.md index c2bbfdf332d..d284d1e46bc 100644 --- a/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-how-to-solve-systems-of-equations/solving-systems.md +++ b/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-how-to-solve-systems-of-equations/solving-systems.md @@ -12,12 +12,12 @@ dashedName: solving-systems 這是這個視頻中用到的 Colab 筆記本。 -# --question-- - -## --任務-- +# --任務-- 在你的筆記本上添加代碼,以求解方程組和繪製圖像。 +# --question-- + ## --text-- 下面哪一項是 SymPy 能做而 matplotlib 不能做的? diff --git a/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-linear-functions/linear-equations.md b/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-linear-functions/linear-equations.md index 53afbce78d0..47c142a85c4 100644 --- a/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-linear-functions/linear-equations.md +++ b/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-linear-functions/linear-equations.md @@ -12,12 +12,12 @@ dashedName: linear-equations 這是和上兩個視頻配套的 Colab 筆記本,這樣你就可以看到公式。 -# --question-- - -## --任務-- +# --任務-- 在你的代數 Colab 筆記本上添加代碼,通過點或通過方程輸入繪製函數圖像。 +# --question-- + ## --text-- 如果你知道斜率(“m”),你有一個 (x,y) 座標點,你可以用以下哪個方程來求 “b”,在 Python 中代表 y 截距? diff --git a/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-ratios-and-proportions/introduction-to-college-algebra-with-python.md b/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-ratios-and-proportions/introduction-to-college-algebra-with-python.md index 9e90a207abb..d894b5ac8e2 100644 --- a/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-ratios-and-proportions/introduction-to-college-algebra-with-python.md +++ b/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-ratios-and-proportions/introduction-to-college-algebra-with-python.md @@ -16,12 +16,12 @@ dashedName: introduction-to-college-algebra-with-python \- 《代數與三角學》,作者 Jay Abramson -# --question-- - -## --任務-- +# --任務-- 在你的 Google Drive 上創建一個 Colab 筆記本,這樣你可以跟着視頻一起學習。 +# --question-- + ## --text-- 在 Google Colab 中添加文本時,你會用什麼符號來創建一個將出現在目錄中的標題? diff --git a/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-ratios-and-proportions/ratios-and-proportions-extra.md b/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-ratios-and-proportions/ratios-and-proportions-extra.md index 9e9a7afc350..d5b623acdbc 100644 --- a/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-ratios-and-proportions/ratios-and-proportions-extra.md +++ b/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-ratios-and-proportions/ratios-and-proportions-extra.md @@ -10,12 +10,12 @@ dashedName: ratios-and-proportions-extra 本節最後一個視頻將告訴你如何在其他應用中使用比例,如貨幣匯率和單位轉換。 它還將向你展示更多關於設置你的筆記本和完成練習任務的信息。 -# --question-- - -## --任務-- +# --任務-- 打開以下 Colab 筆記本,運行單元格,然後練習解決一步代數問題。作爲獎勵,看看生成練習題的代碼。 +# --question-- + ## --text-- 0.9999......(重複 9)的另一種寫法是什麼? diff --git a/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-ratios-and-proportions/solving-proportions.md b/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-ratios-and-proportions/solving-proportions.md index db8c80f03b0..c797f3e6f26 100644 --- a/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-ratios-and-proportions/solving-proportions.md +++ b/curriculum/challenges/chinese-traditional/17-college-algebra-with-python/learn-ratios-and-proportions/solving-proportions.md @@ -12,12 +12,12 @@ dashedName: solving-proportions 這是和視頻配套的 Colab 筆記本。如果你還沒有這樣做,請設置好上一個視頻中你的代數 Colab 筆記本。 然後,將本視頻中的代碼添加到其中。 -# --question-- - -## --任務-- +# --任務-- 將視頻中的代碼添加到你在第一步創建的代數 Colab 筆記本中。 +# --question-- + ## --text-- 在求解一個比例時,如果一個分子是零,另一個分子必須是零,該語句才成立嗎? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md index 04d809176cc..d5de7121c15 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-do-while/ and complete all the tasks for the "Add Looping Logic to Your Code Using the do-while and while Statements in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Add Looping Logic to Your Code Using the `do`-`while` and `while` Statements in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- A developer needs to iterate through an array of items to find one that matches a certain criteria. Which is the best iteration statement for this purpose? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md index d0087ce5be8..ee50cb1473b 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-switch-case/ and complete all the tasks for the "Branch the Flow of Code Using the switch-case Construct in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Branch the Flow of Code Using the `switch`-`case` Construct in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What is the purpose of the `break` keyword? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md index b34b20dcdd7..a837a683f26 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/challenge-project-develop-branching-looping-structures-c-sharp/ and complete all the tasks for the "Challenge Project - Develop Branching and Looping Structures in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Develop Branching and Looping Structures in C# challenge project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- A developer needs to create an iteration statement. Under what condition is a `while` statement a better choice than a `do` statement? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md index bf5a4084719..68fae6e49b2 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-code-blocks/ and complete all the tasks for the "Control Variable Scope and Logic Using Code Blocks in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Control Variable Scope and Logic Using Code Blocks in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following statements is true about showing/removing the curly braces for code blocks associated with an `if` statement? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md index 3f503f69e32..f1d60edd59a 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-evaluate-boolean-expressions/ and complete all the tasks for the "Evaluate Boolean Expressions to Make Decisions in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Evaluate Boolean Expressions to Make Decisions in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following lines of code is a valid use of the conditional operator? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md index f23006f2793..a678783a004 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-develop-conditional-branching-looping/ and complete all the tasks for the "Guided Project - Develop Conditional Branching and Looping Structures in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Develop Conditional Branching and Looping Structures in C# guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- When is it appropriate to use a `switch-case` construct rather than a `if-elseif-else` construct? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md index 29f7fbe4ca9..d85cd9e79c5 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-for/ and complete all the tasks for the "Iterate Through a Code Block Using the for Statement in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Iterate Through a Code Block Using the `for` Statement in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following `for` statements is correct? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md index 597a1daa754..b4c34681581 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-if-elseif-else/ and complete all the tasks for the "Add Decision Logic to Your Code Using if, else, and else if statements in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Add Decision Logic to Your Code Using `if`, `else`, and `else if` Statements in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the choices below is not a valid operator in C#? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md index aeeed01382f..64ee30462ef 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-call-methods/ and complete all the tasks for the "Call Methods From the .NET Class Library Using C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Call Methods from the .NET Class Library Using C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What is an object? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md index 4124a3e48d0..c19935da753 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/challenge-project-arrays-iteration-selection/ and complete all the tasks for the "Challenge Project - Develop foreach and if-elseif-else Structures to Process Array Data in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Develop `foreach` and `if`-`elseif`-`else` Structures to Process Array Data in C# challenge project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- A developer is working with two other developers to update a collection of applications. The developers will use code comments during the update process. Which of the following describes an appropriate use of code comments? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md index ff048d90565..221d8229223 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-readable-code/ and complete all the tasks for the "Create Readable Code with Conventions, Whitespace, and Comments in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Create Readable Code with Conventions, Whitespace, and Comments in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following is a bad reason to use a code comment? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md index 94f87df9df4..af1892b527b 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-arrays-iteration-selection/ and complete all the tasks for the "Guided Project - Develop foreach and if-elseif-else Structures to Process Array Data in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Develop `foreach` and `if`-`elseif`-`else` Structures to Process Array Data in C# guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- A developer writes an application that uses a `foreach` loop to iterate through an array containing 20 elements. After the application is complete, the developer learns that the array must be updated to include 40 elements. The application needs to examine all 40 array elements. Which of the following items describes the required code update? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md index 293d196cf6f..772087d66a9 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/install-configure-visual-studio-code/ and complete all the tasks for the "Install and Configure Visual Studio Code" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Install and Configure Visual Studio Code module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following choices provides the best description of an Integrated Development Environment (IDE)? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md index 2e1bc53cae6..33713c19393 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-arrays/ and complete all the tasks for the "Store and Iterate Through Sequences of Data Using Arrays and the foreach Statement in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Store and Iterate Through Sequences of Data Using Arrays and the `foreach` Statement in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following foreach statements is syntactically correct? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md index 1f9c05bfa10..18794d3b5af 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/challenge-project-create-mini-game/ and complete all the tasks for the "Challenge Project - Create a Mini-Game" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Create a Mini-Game challenge project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- A developer wants to create a method that returns a value in an array. Which of the following options would be a good choice for a method signature? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md index f30799e881f..01aaf75c313 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/create-c-sharp-methods-return-values/ and complete all the tasks for the "Create C# Methods that Return Values" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Create C# Methods that Return Values module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following options correctly returns a `string` value? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md index c576ee4c155..44f48d4b8c9 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/create-c-sharp-methods-parameters/ and complete all the tasks for the "Create C# Methods with Parameters" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Create C# Methods with Parameters module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Given the method signature, diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md index aea8d011c19..15877a13f97 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-visit-petting-zoo/ and complete all the tasks for the "Guided Project - Plan a Petting Zoo Visit" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Plan a Petting Zoo Visit guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What is the purpose of defining an optional parameter in a method? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md index c7bccb05699..7e6313f4a57 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/write-first-c-sharp-method/ and complete all the tasks for the "Write Your First C# Method" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Write Your First C# Method module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following correctly declares a method? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md index 52415dc17c0..88425acb0d1 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/challenge-project-debug-c-sharp-console-application/ and complete all the tasks for the "Challenge Project - Debug a C# Console Application Using Visual Studio Code" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Debug a C# Console Application Using Visual Studio Code challenge project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following options can be used set a breakpoint in Visual Studio Code? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md index 3a43bedeeff..82396ebc624 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/create-throw-exceptions-c-sharp/ and complete all the tasks for the "Create and Throw Exceptions in C# Console Applications" module. This is **required** earn to the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Create and Throw Exceptions in C# Console Applications module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- When should a method throw an exception? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md index c96c6dbf3d0..33d1914183f 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-debug-handle-exceptions-c-sharp-console-application/ and complete all the tasks for the "Guided Project - Debug and Handle Exceptions in a C# Console Application Using Visual Studio Code" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Debug and Handle Exceptions in a C# Console Application Using Visual Studio Code guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- When is an `ArgumentOutOfRangeException` exception thrown? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md index a437297321d..d77786e00f0 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/implement-exception-handling-c-sharp/ and complete all the tasks for the "Implement Exception Handling in C# Console Applications" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Implement Exception Handling in C# Console Applications module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- When is an `ArrayTypeMismatchException` exception thrown? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md index cf989a73210..eaf0a57a505 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/implement-visual-studio-code-debugging-tools/ and complete all the tasks for the "Implement the Visual Studio Code Debugging Tools for C#" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Implement the Visual Studio Code Debugging Tools for C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which section of the RUN AND DEBUG view is used to track the current point of execution within the running application? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md index fb54c916c41..66529f25875 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/review-principles-code-debugging-exception-handling-c-sharp/ and complete all the tasks for the "Review the Principles of Code Debugging and Exception Handling" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Review the Principles of Code Debugging and Exception Handling module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What is the relationship between the type of exception and the information it contains? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md index 57357fa507f..3283ae458e5 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/challenge-project-work-variable-data-c-sharp/ and complete all the tasks for the "Challenge Project - Work with Variable Data in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Work with Variable Data in C# challenge project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- To sort a string array, why is it important to use the `String.Trim()` method on each array element before sorting? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md index cfc6e5f6417..90ad0c24ddc 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-choose-data-type/ and complete all the tasks for the "Choose the Correct Data Type in Your C# Code" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Choose the Correct Data Type in Your C# Code module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- A piece of code must store whole numeric values between negative and positive `1,000,000`. Which data type should you choose? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md index 7e3cccdbf6c..2f81848ec0c 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-convert-cast/ and complete all the tasks for the "Convert Data Types Using Casting and Conversion Techniques in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Convert Data Types Using Casting and Conversion Techniques in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What type of action is being performed when changing a `float` into an `int`? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md index 25db424abb8..4f13971f084 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-format-strings/ and complete all the tasks for the "Format Alphanumeric Data for Presentation in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Format Alphanumeric Data for Presentation in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- For the C# code `Console.WriteLine("C110".PadLeft(6, '0'));`, which is the expected output? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md index 41a67d95996..d70b33e0034 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-work-variable-data-c-sharp/ and complete all the tasks for the "Guided Project - Work with Variable Data in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Work with Variable Data in C# guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- For the code `decimal.TryParse(numberString, out myConvert))` when the type of `numberString` is a String. diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md index 7a75db01628..f3193f3dfc2 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-modify-content/ and complete all the tasks for the "Modify the Content of Strings Using Built-In String Data Type Methods in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Modify the Content of Strings Using Built-In String Data Type Methods in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which method finds the next index of either the `-` char, the `=` char, or the `_` char? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md index f51f67bd1d7..14353de4a63 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-arrays-operations/ and complete all the tasks for the "Perform Operations on Arrays Using Helper Methods in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Perform Operations on Arrays Using Helper Methods in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which method changes the order of items in an `string` array? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md index 7a7836123bb..131c73af39c 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-calculate-print-student-grades/ and complete all the tasks for the "Guided Project - Calculate and Print Student Grades" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Calculate and Print Student Grades guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What is wrong with the following code? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md index f4d5d576477..6a5491e8f12 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-calculate-final-gpa/ and complete all the tasks for the "Guided Project - Calculate Final GPA" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Calculate Final GPA guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Suppose `decimal gradePointAverage = 3.99872831m;`. diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md index 09ea0a4fd28..71e056d641f 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-basic-operations/ and complete all the tasks for the "Perform Basic Operations on Numbers in C#" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Perform Basic Operations on Numbers in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What is the value of the following result? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md index 8fe6df7466b..6a00bd662df 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-basic-formatting/ and complete all the tasks for the "Perform Basic String Formatting in C#" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Perform Basic String Formatting in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following lines of code correctly uses string interpolation assuming that the variable `value` is a string? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md index 8c1bb0619d3..f229f0d8387 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-literals-variables/ and complete all the tasks for the "Store and Retrieve Data Using Literal and Variable Values in C#" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Store and Retrieve Data Using Literal and Variable Values in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following lines of code creates a variable correctly? diff --git a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md index c6cdbd10e15..022ce5aa737 100644 --- a/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md +++ b/curriculum/challenges/chinese-traditional/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md @@ -12,12 +12,12 @@ dashedName: write-your-first-c-sharp-code 1. 跳轉到 https://learn.microsoft.com/training/modules/csharp-write-first/,然後完成“編寫第一個 C# 代碼”模塊的所有任務。 這是在 Microsoft Learn 上獲得“使用 C# 編寫第一個代碼”的獎盃以及參加認證考試所**必需**的。 1. 完成後,返回並正確回答下面的問題。 -# --question-- - -## --assignment-- +# --assignment-- Complete the Write Your First C# Code module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- `Console.Write` 和 `Console.WriteLine`有什麼區別? diff --git a/curriculum/challenges/chinese/16-the-odin-project/top-learn-html-foundations/html-foundations-question-a.md b/curriculum/challenges/chinese/16-the-odin-project/top-learn-html-foundations/html-foundations-question-a.md index 26dcaf81d51..138c596a766 100644 --- a/curriculum/challenges/chinese/16-the-odin-project/top-learn-html-foundations/html-foundations-question-a.md +++ b/curriculum/challenges/chinese/16-the-odin-project/top-learn-html-foundations/html-foundations-question-a.md @@ -26,12 +26,12 @@ HTML has a vast list of predefined tags that you can use to create all kinds of Using the correct elements for content is called semantic HTML. You will explore this in much more depth later on in the curriculum. -# --question-- - -## --assignment-- +# --assignment-- Watch Kevin Powell’s [Introduction to HTML video](https://www.youtube.com/watch?v=LGQuIIv2RVA&list=PL4-IK0AVhVjM0xE0K2uZRvsM7LkIhsPT-) +# --question-- + ## --text-- What are HTML tags? diff --git a/curriculum/challenges/chinese/16-the-odin-project/top-learn-html-foundations/html-foundations-question-e.md b/curriculum/challenges/chinese/16-the-odin-project/top-learn-html-foundations/html-foundations-question-e.md index 58e4fab1b96..0a6e5658f3d 100644 --- a/curriculum/challenges/chinese/16-the-odin-project/top-learn-html-foundations/html-foundations-question-e.md +++ b/curriculum/challenges/chinese/16-the-odin-project/top-learn-html-foundations/html-foundations-question-e.md @@ -11,12 +11,12 @@ HTML and CSS are two languages that work together to create everything that you Many helpful resources out there keep referring to HTML and CSS as programming languages, but if you want to get technical, labeling them as such is not quite accurate. This is because they are only concerned with presenting information. They are not used to program logic. JavaScript, which you will learn in the next section, is a programming language because it’s used to make webpages do things. Yet, there is quite a lot you can do with just HTML and CSS, and you will definitely need them both. Throughout our curriculum, the following lessons focus on giving you the tools you need to succeed once you reach JavaScript content. -# --question-- - -## --assignment-- +# --assignment-- Read the HTML vs CSS vs JavaScript article. It is a quick overview of the relationships between HTML, CSS, and JavaScript. +# --question-- + ## --text-- Which of the following statements is true? @@ -37,5 +37,3 @@ HTML and CSS are used to add style to a webpage, and JavaScript is used to creat ## --video-solution-- 2 - - diff --git a/curriculum/challenges/chinese/16-the-odin-project/top-learn-html-foundations/html-foundations-question-g.md b/curriculum/challenges/chinese/16-the-odin-project/top-learn-html-foundations/html-foundations-question-g.md index 16299d58648..29cc79ceab3 100644 --- a/curriculum/challenges/chinese/16-the-odin-project/top-learn-html-foundations/html-foundations-question-g.md +++ b/curriculum/challenges/chinese/16-the-odin-project/top-learn-html-foundations/html-foundations-question-g.md @@ -12,9 +12,7 @@ The final element needed to complete the HTML boilerplate is the `` elemen To complete the boilerplate, add a `body` element to the `index.html` file. The `body` element also goes within the `html` element and is always below the `head` element, like so: -# --question-- - -## --assignment-- +# --assignment-- Watch and follow along to Kevin Powell’s brilliant Building your first web page video above. @@ -26,6 +24,8 @@ Build some muscle memory by deleting the contents of the `index.html` file and t Run your boilerplate through this [HTML validator](https://www.freeformatter.com/html-validator.html). Validators ensure your markup is correct and are an excellent learning tool, as they provide feedback on syntax errors you may be making often and aren’t aware of, such as missing closing tags and extra spaces in your HTML. +# --question-- + ## --text-- What is the purpose of the `body` element? diff --git a/curriculum/challenges/chinese/16-the-odin-project/top-links-and-images/links-and-images-question-a.md b/curriculum/challenges/chinese/16-the-odin-project/top-links-and-images/links-and-images-question-a.md index b4d237448f3..09759d1d3e7 100644 --- a/curriculum/challenges/chinese/16-the-odin-project/top-links-and-images/links-and-images-question-a.md +++ b/curriculum/challenges/chinese/16-the-odin-project/top-links-and-images/links-and-images-question-a.md @@ -39,12 +39,12 @@ By default, any text wrapped with an anchor tag without a `href` attribute will It’s worth noting you can use anchor tags to link to any kind of resource on the internet, not just other HTML documents. You can link to videos, pdf files, images, and so on, but for the most part, you will be linking to other HTML documents. -# --question-- - -## --assignment-- +# --assignment-- Watch Kevin Powell’s HTML Links video above. +# --question-- + ## --text-- What HTML tag is used to create a link? diff --git a/curriculum/challenges/chinese/16-the-odin-project/top-links-and-images/links-and-images-question-d.md b/curriculum/challenges/chinese/16-the-odin-project/top-links-and-images/links-and-images-question-d.md index 37eebffbabf..19e8da36314 100644 --- a/curriculum/challenges/chinese/16-the-odin-project/top-links-and-images/links-and-images-question-d.md +++ b/curriculum/challenges/chinese/16-the-odin-project/top-links-and-images/links-and-images-question-d.md @@ -85,12 +85,12 @@ In many cases, this will work just fine; however, you can still run into unexpec ``` -# --question-- - -## --assignment-- +# --assignment-- Watch Kevin Powell’s HTML File Structure video above. +# --question-- + ## --text-- What is the difference between an absolute and a relative link? diff --git a/curriculum/challenges/chinese/16-the-odin-project/top-links-and-images/links-and-images-question-e.md b/curriculum/challenges/chinese/16-the-odin-project/top-links-and-images/links-and-images-question-e.md index ae008078088..8ac3815d177 100644 --- a/curriculum/challenges/chinese/16-the-odin-project/top-links-and-images/links-and-images-question-e.md +++ b/curriculum/challenges/chinese/16-the-odin-project/top-links-and-images/links-and-images-question-e.md @@ -71,12 +71,12 @@ The `alt` attribute is used to describe an image. It will be used in place of th This is how the The Odin Project logo example you used earlier looks with an `alt` attribute included: -# --question-- - -## --assignment-- +# --assignment-- Watch Kevin Powell’s HTML Images Video above. +# --question-- + ## --text-- Which tag is used to display an image? diff --git a/curriculum/challenges/chinese/16-the-odin-project/top-links-and-images/links-and-images-question-h.md b/curriculum/challenges/chinese/16-the-odin-project/top-links-and-images/links-and-images-question-h.md index 71157081ae7..f7ed108d84e 100644 --- a/curriculum/challenges/chinese/16-the-odin-project/top-links-and-images/links-and-images-question-h.md +++ b/curriculum/challenges/chinese/16-the-odin-project/top-links-and-images/links-and-images-question-h.md @@ -70,12 +70,12 @@ The `alt` attribute is used to describe an image. It will be used in place of th This is how the The Odin Project logo example you used earlier looks with an alt attribute included: -# --question-- - -## --assignment-- +# --assignment-- Read about the four main image formats that can be used on the web. +# --question-- + ## --text-- What are the four main image formats that you can use for images on the web? diff --git a/curriculum/challenges/chinese/16-the-odin-project/top-the-box-model/the-box-model-question-a.md b/curriculum/challenges/chinese/16-the-odin-project/top-the-box-model/the-box-model-question-a.md index 81cc2d54518..e2882cdb454 100644 --- a/curriculum/challenges/chinese/16-the-odin-project/top-the-box-model/the-box-model-question-a.md +++ b/curriculum/challenges/chinese/16-the-odin-project/top-the-box-model/the-box-model-question-a.md @@ -13,12 +13,12 @@ To open up the inspector, you can right-click on any element of a webpage and cl Don’t get overwhelmed with all the tools you’re now seeing! For this lesson, we want to focus on the Elements and Styles panes. -# --question-- - -## --assignment-- +# --assignment-- Play around with Chrome Dev Tools and see if you can answer the following question. +# --question-- + ## --text-- Which panes should you focus on in the Chrome Dev Tools for inspecting and debugging HTML and CSS? diff --git a/curriculum/challenges/chinese/16-the-odin-project/top-the-box-model/the-box-model-question-c.md b/curriculum/challenges/chinese/16-the-odin-project/top-the-box-model/the-box-model-question-c.md index 84cee19aea0..25a32e0f581 100644 --- a/curriculum/challenges/chinese/16-the-odin-project/top-the-box-model/the-box-model-question-c.md +++ b/curriculum/challenges/chinese/16-the-odin-project/top-the-box-model/the-box-model-question-c.md @@ -14,12 +14,12 @@ When an element is selected, the Styles tab will show all the currently applied ![Overwritten style](https://cdn.statically.io/gh/TheOdinProject/curriculum/f8fd38fc62578d8e8368f5303126215a492847f0/foundations/html_css/inspecting-html-and-css/imgs/03.png) -# --question-- - -## --assignment-- +# --assignment-- Play around with Chrome Dev Tools and see if you can answer the following question. +# --question-- + ## --text-- Which feature in the Elements pane allows you to select any element on a webpage by hovering over it? diff --git a/curriculum/challenges/chinese/16-the-odin-project/top-the-box-model/the-box-model-question-d.md b/curriculum/challenges/chinese/16-the-odin-project/top-the-box-model/the-box-model-question-d.md index 4d882631471..a4d810760a5 100644 --- a/curriculum/challenges/chinese/16-the-odin-project/top-the-box-model/the-box-model-question-d.md +++ b/curriculum/challenges/chinese/16-the-odin-project/top-the-box-model/the-box-model-question-d.md @@ -14,13 +14,12 @@ When an element is selected, the Styles tab will show all the currently applied ![Overwritten style](https://cdn.statically.io/gh/TheOdinProject/curriculum/f8fd38fc62578d8e8368f5303126215a492847f0/foundations/html_css/inspecting-html-and-css/imgs/03.png) - -# --question-- - -## --assignment-- +# --assignment-- Play around with Chrome Dev Tools and see if you can answer the following question. +# --question-- + ## --text-- In the Styles pane, what information can you view about an element when it is selected? diff --git a/curriculum/challenges/chinese/16-the-odin-project/top-the-box-model/the-box-model-question-f.md b/curriculum/challenges/chinese/16-the-odin-project/top-the-box-model/the-box-model-question-f.md index a91d049aee3..96e12157b13 100644 --- a/curriculum/challenges/chinese/16-the-odin-project/top-the-box-model/the-box-model-question-f.md +++ b/curriculum/challenges/chinese/16-the-odin-project/top-the-box-model/the-box-model-question-f.md @@ -16,13 +16,12 @@ Every single thing on a webpage is a rectangular box. These boxes can have other } ``` - -# --question-- - -## --assignment-- +# --assignment-- Add a border to every element on the page and see how the boxes are laid out. +# --question-- + ## --text-- What is the fundamental concept in CSS that helps you understand the structure of elements as rectangular boxes? diff --git a/curriculum/challenges/chinese/16-the-odin-project/top-the-box-model/the-box-model-question-g.md b/curriculum/challenges/chinese/16-the-odin-project/top-the-box-model/the-box-model-question-g.md index b8c981a7aa9..fdd4840cfa0 100644 --- a/curriculum/challenges/chinese/16-the-odin-project/top-the-box-model/the-box-model-question-g.md +++ b/curriculum/challenges/chinese/16-the-odin-project/top-the-box-model/the-box-model-question-g.md @@ -20,12 +20,12 @@ Be sure to study the diagrams carefully. ![the box model](https://cdn.statically.io/gh/TheOdinProject/curriculum/main/foundations/html_css/css-foundations/the-box-model/imgs/box-model.png) -# --question-- - -## --assignment-- +# --assignment-- Add a border to every element on the page and see how the boxes are laid out. +# --question-- + ## --text-- From inside to outside, what is the order of box-model properties? diff --git a/curriculum/challenges/chinese/16-the-odin-project/top-working-with-text/working-with-text-question-a.md b/curriculum/challenges/chinese/16-the-odin-project/top-working-with-text/working-with-text-question-a.md index 8698b62aca8..33176924828 100644 --- a/curriculum/challenges/chinese/16-the-odin-project/top-working-with-text/working-with-text-question-a.md +++ b/curriculum/challenges/chinese/16-the-odin-project/top-working-with-text/working-with-text-question-a.md @@ -32,12 +32,12 @@ Changing our example from before to use paragraph elements fixes the issue: -# --question-- - -## --assignment-- +# --assignment-- Watch and follow along to Kevin Powell’s HTML Paragraph and Headings Video above. +# --question-- + ## --text-- How do you create a paragraph in HTML? diff --git a/curriculum/challenges/chinese/16-the-odin-project/top-working-with-text/working-with-text-question-c.md b/curriculum/challenges/chinese/16-the-odin-project/top-working-with-text/working-with-text-question-c.md index 6ccf0e06658..da6e3dd4511 100644 --- a/curriculum/challenges/chinese/16-the-odin-project/top-working-with-text/working-with-text-question-c.md +++ b/curriculum/challenges/chinese/16-the-odin-project/top-working-with-text/working-with-text-question-c.md @@ -20,12 +20,12 @@ But you will probably find yourself using the `strong` element much more in comb Sometimes you will want to make text bold without giving it an important meaning. You’ll learn how to do that in the CSS lessons later in the curriculum. -# --question-- - -## --assignment-- +# --assignment-- Watch Kevin Powell’s HTML Bold and Italic Text Video above. +# --question-- + ## --text-- What element should you use to make text bold and important? diff --git a/curriculum/challenges/chinese/16-the-odin-project/top-working-with-text/working-with-text-question-g.md b/curriculum/challenges/chinese/16-the-odin-project/top-working-with-text/working-with-text-question-g.md index 5f5d141fa46..23881db5be0 100644 --- a/curriculum/challenges/chinese/16-the-odin-project/top-working-with-text/working-with-text-question-g.md +++ b/curriculum/challenges/chinese/16-the-odin-project/top-working-with-text/working-with-text-question-g.md @@ -21,12 +21,12 @@ Writing an HTML comment is simple: You just enclose the comment with ` ``` -# --question-- - -## --assignment-- +# --assignment-- To get some practice working with text in HTML, create a plain blog article page which uses different headings, uses paragraphs, and has some text in the paragraphs bolded and italicized. You can use [Lorem Ipsum](https://loremipsum.io) to generate dummy text, in place of real text as you build your sites. +# --question-- + ## --text-- How do you create HTML comments? diff --git a/curriculum/challenges/chinese/16-the-odin-project/top-working-with-text/working-with-text-question-h.md b/curriculum/challenges/chinese/16-the-odin-project/top-working-with-text/working-with-text-question-h.md index c20b4de097a..29feb0cf613 100644 --- a/curriculum/challenges/chinese/16-the-odin-project/top-working-with-text/working-with-text-question-h.md +++ b/curriculum/challenges/chinese/16-the-odin-project/top-working-with-text/working-with-text-question-h.md @@ -22,9 +22,7 @@ Ordered lists are created using the `
        ` element. Each individual item in them -# --question-- - -## --assignment-- +# --assignment-- Watch the first three minutes of Kevin Powell's video on Ordered and Unordered lists above. @@ -44,6 +42,8 @@ Make an unordered list of places you’d like to visit someday. Make an ordered list of your all time top 5 favorite video games or movies. +# --question-- + ## --text-- What HTML tag is used to create an unordered list? diff --git a/curriculum/challenges/chinese/17-college-algebra-with-python/learn-applications-of-linear-systems/word-problems.md b/curriculum/challenges/chinese/17-college-algebra-with-python/learn-applications-of-linear-systems/word-problems.md index ecb7907c04a..74a4618a02d 100644 --- a/curriculum/challenges/chinese/17-college-algebra-with-python/learn-applications-of-linear-systems/word-problems.md +++ b/curriculum/challenges/chinese/17-college-algebra-with-python/learn-applications-of-linear-systems/word-problems.md @@ -16,9 +16,7 @@ dashedName: word-problems \- 《代数与三角学》,作者 Jay Abramson -# --question-- - -## --任务-- +# --任务-- 完成《商业数学分步手册(2021)》第 63、75、85 和 118 页的问题。 @@ -26,6 +24,8 @@ dashedName: word-problems 完成《代数与三角学》第 304、308 和 321 页的问题。 +# --question-- + ## --text-- 以下哪些关键词表示减法? diff --git a/curriculum/challenges/chinese/17-college-algebra-with-python/learn-business-applications-of-college-algebra/demand-and-revenue.md b/curriculum/challenges/chinese/17-college-algebra-with-python/learn-business-applications-of-college-algebra/demand-and-revenue.md index 4ea2034b739..67e853ab83a 100644 --- a/curriculum/challenges/chinese/17-college-algebra-with-python/learn-business-applications-of-college-algebra/demand-and-revenue.md +++ b/curriculum/challenges/chinese/17-college-algebra-with-python/learn-business-applications-of-college-algebra/demand-and-revenue.md @@ -16,12 +16,12 @@ dashedName: demand-and-revenue \- 《商业数学分步手册(2021)》,作者 Jean-Paul Oliver -# --question-- - -## --作业-- +# --作业-- 完成《商业数学分步手册(2021)》第 155 和 163 页的问题。 +# --question-- + ## --text-- 下列哪个业务方程式不正确? diff --git a/curriculum/challenges/chinese/17-college-algebra-with-python/learn-fractions-and-decimals/converting-fractions-and-decimals.md b/curriculum/challenges/chinese/17-college-algebra-with-python/learn-fractions-and-decimals/converting-fractions-and-decimals.md index b5b846bc422..869a561238b 100644 --- a/curriculum/challenges/chinese/17-college-algebra-with-python/learn-fractions-and-decimals/converting-fractions-and-decimals.md +++ b/curriculum/challenges/chinese/17-college-algebra-with-python/learn-fractions-and-decimals/converting-fractions-and-decimals.md @@ -12,12 +12,12 @@ dashedName: converting-fractions-and-decimals 这是视频中使用的 Colab 笔记本,使用此代码作为模型,自己写代码来转换分数和小数。 -# --question-- - -## --任务-- +# --任务-- 在你的代数 Colab 笔记本上添加转换分数和小数的代码。 +# --question-- + ## --text-- 以下哪项以小数正确表示“百分之三”? diff --git a/curriculum/challenges/chinese/17-college-algebra-with-python/learn-fractions-and-decimals/fractions-and-decimals-extra.md b/curriculum/challenges/chinese/17-college-algebra-with-python/learn-fractions-and-decimals/fractions-and-decimals-extra.md index a9ad1ce5aea..6428d9f706c 100644 --- a/curriculum/challenges/chinese/17-college-algebra-with-python/learn-fractions-and-decimals/fractions-and-decimals-extra.md +++ b/curriculum/challenges/chinese/17-college-algebra-with-python/learn-fractions-and-decimals/fractions-and-decimals-extra.md @@ -12,9 +12,7 @@ dashedName: fractions-and-decimals-extra 这是这个视频中用到的 Colab 笔记本,你可以把它作为一个模型。 -# --question-- - -## --任务-- +# --任务-- 在你的代数 Colab 笔记本上添加因数和求解变量的代码。 @@ -22,6 +20,8 @@ dashedName: fractions-and-decimals-extra 在下面的笔记本中运行代码以练习转换分数和小数。作为奖励,看看用来产生练习问题的代码。 +# --question-- + ## --text-- 你不能在 Google Colaboratory 中使用以下哪种语言? diff --git a/curriculum/challenges/chinese/17-college-algebra-with-python/learn-functions-and-graphing/functions-and-graphing-extra.md b/curriculum/challenges/chinese/17-college-algebra-with-python/learn-functions-and-graphing/functions-and-graphing-extra.md index 405ea7acdaa..9cb59675aaf 100644 --- a/curriculum/challenges/chinese/17-college-algebra-with-python/learn-functions-and-graphing/functions-and-graphing-extra.md +++ b/curriculum/challenges/chinese/17-college-algebra-with-python/learn-functions-and-graphing/functions-and-graphing-extra.md @@ -12,12 +12,12 @@ dashedName: functions-and-graphing-extra 这是和视频配套的 Colab 笔记本。 -# --question-- - -## --assignment-- +# --assignment-- 在你的代数 Colab 笔记本上添加代码,用于函数和图像。 +# --question-- + ## --text-- 你会导入哪个 Python 库来创建可以绘图的数组? diff --git a/curriculum/challenges/chinese/17-college-algebra-with-python/learn-functions-and-graphing/functions.md b/curriculum/challenges/chinese/17-college-algebra-with-python/learn-functions-and-graphing/functions.md index ae5b92cbdcd..23ea1a02a8d 100644 --- a/curriculum/challenges/chinese/17-college-algebra-with-python/learn-functions-and-graphing/functions.md +++ b/curriculum/challenges/chinese/17-college-algebra-with-python/learn-functions-and-graphing/functions.md @@ -12,12 +12,12 @@ dashedName: functions 这是这个和下一个视频中用到的 Colab 笔记本。 -# --question-- - -## --assignment-- +# --assignment-- 在你的代数 Colab 笔记本上添加代码,创建用于小数到分数转换的 Python 函数。 +# --question-- + ## --text-- 在 Python 中定义了一个函数后,将函数的每一行缩进多少个空格? diff --git a/curriculum/challenges/chinese/17-college-algebra-with-python/learn-functions-and-graphing/graphing.md b/curriculum/challenges/chinese/17-college-algebra-with-python/learn-functions-and-graphing/graphing.md index e631af03c62..d268bd2af69 100644 --- a/curriculum/challenges/chinese/17-college-algebra-with-python/learn-functions-and-graphing/graphing.md +++ b/curriculum/challenges/chinese/17-college-algebra-with-python/learn-functions-and-graphing/graphing.md @@ -12,9 +12,7 @@ dashedName: graphing 这是和上两个视频配套的 Colab 笔记本,这样你可以开始制作你自己的图像。 -# --question-- - -## --assignment-- +# --assignment-- 在你的代数 Colab 笔记本上添加代码,用于函数和图像。 @@ -22,6 +20,8 @@ dashedName: graphing 运行下面的笔记本看看使用代数和 Python 创建图像的更多方法。 +# --question-- + ## --text-- 以下哪种情况会在图像上画出一条蓝线? diff --git a/curriculum/challenges/chinese/17-college-algebra-with-python/learn-how-to-graph-systems-of-equations/graphing-systems.md b/curriculum/challenges/chinese/17-college-algebra-with-python/learn-how-to-graph-systems-of-equations/graphing-systems.md index 9c9d795cb9f..24cb6edba2b 100644 --- a/curriculum/challenges/chinese/17-college-algebra-with-python/learn-how-to-graph-systems-of-equations/graphing-systems.md +++ b/curriculum/challenges/chinese/17-college-algebra-with-python/learn-how-to-graph-systems-of-equations/graphing-systems.md @@ -12,12 +12,12 @@ This first video will show you how to graph systems of equations with written ma 这是这个视频中用到的 Colab 笔记本。 -# --question-- - -## --任务-- +# --任务-- 将视频中的代码添加到你正在创建的代数笔记本中,并使用不同的函数进行测试。 +# --question-- + ## --text-- numpy `linspace()` 函数需要三个参数来创建一个数组。 它不采用以下哪个参数? diff --git a/curriculum/challenges/chinese/17-college-algebra-with-python/learn-how-to-solve-for-x/how-to-solve-for-x-extra.md b/curriculum/challenges/chinese/17-college-algebra-with-python/learn-how-to-solve-for-x/how-to-solve-for-x-extra.md index f73987299e0..2ff3168af3a 100644 --- a/curriculum/challenges/chinese/17-college-algebra-with-python/learn-how-to-solve-for-x/how-to-solve-for-x-extra.md +++ b/curriculum/challenges/chinese/17-college-algebra-with-python/learn-how-to-solve-for-x/how-to-solve-for-x-extra.md @@ -12,9 +12,7 @@ dashedName: how-to-solve-for-x-extra 这是和视频配套的 Colab 笔记本。用它来为你正在创建的代数 Colab 笔记本添加更多内容。 -# --question-- - -## --任务-- +# --任务-- 将视频中更多求解 x 的方法的代码添加到你的代数 Colab 笔记本中。 @@ -22,6 +20,8 @@ dashedName: how-to-solve-for-x-extra 打开以下 Colab 笔记本,运行单元格,然后练习解决一步和两步的代数问题。作为奖励,看看生成练习题的代码。 +# --question-- + ## --text-- 如果你导入 sympy 并定义 x 为变量,下面的代码会有什么输出? diff --git a/curriculum/challenges/chinese/17-college-algebra-with-python/learn-how-to-solve-for-x/solving-for-x.md b/curriculum/challenges/chinese/17-college-algebra-with-python/learn-how-to-solve-for-x/solving-for-x.md index 0d579bb47a3..1a91cc9a840 100644 --- a/curriculum/challenges/chinese/17-college-algebra-with-python/learn-how-to-solve-for-x/solving-for-x.md +++ b/curriculum/challenges/chinese/17-college-algebra-with-python/learn-how-to-solve-for-x/solving-for-x.md @@ -12,12 +12,12 @@ dashedName: solving-for-x 这是和视频配套的 Colab 笔记本。将视频中的代码添加到你的代数 Colab 笔记本中,看看如何用 Python 求解 X。 然后,如果你想的话,修改代码,进行测试,并与用纸笔解题的方法进行比较。 记住,方程输入需要使用 Python 语法。 -# --question-- - -## --任务-- +# --任务-- 将视频中求解 x 的方法的代码添加到你的代数 Colab 笔记本中。 +# --question-- + ## --text-- 在 Python 中,你导入什么库来解决带有变量的代数问题? diff --git a/curriculum/challenges/chinese/17-college-algebra-with-python/learn-how-to-solve-systems-of-equations/solving-systems.md b/curriculum/challenges/chinese/17-college-algebra-with-python/learn-how-to-solve-systems-of-equations/solving-systems.md index 4e6690352ed..4be854bca29 100644 --- a/curriculum/challenges/chinese/17-college-algebra-with-python/learn-how-to-solve-systems-of-equations/solving-systems.md +++ b/curriculum/challenges/chinese/17-college-algebra-with-python/learn-how-to-solve-systems-of-equations/solving-systems.md @@ -12,12 +12,12 @@ dashedName: solving-systems 这是这个视频中用到的 Colab 笔记本。 -# --question-- - -## --任务-- +# --任务-- 在你的笔记本上添加代码,以求解方程组和绘制图像。 +# --question-- + ## --text-- 下面哪一项是 SymPy 能做而 matplotlib 不能做的? diff --git a/curriculum/challenges/chinese/17-college-algebra-with-python/learn-linear-functions/linear-equations.md b/curriculum/challenges/chinese/17-college-algebra-with-python/learn-linear-functions/linear-equations.md index 1290a6a494e..bdc304fb6cc 100644 --- a/curriculum/challenges/chinese/17-college-algebra-with-python/learn-linear-functions/linear-equations.md +++ b/curriculum/challenges/chinese/17-college-algebra-with-python/learn-linear-functions/linear-equations.md @@ -12,12 +12,12 @@ dashedName: linear-equations 这是和上两个视频配套的 Colab 笔记本,这样你就可以看到公式。 -# --question-- - -## --任务-- +# --任务-- 在你的代数 Colab 笔记本上添加代码,通过点或通过方程输入绘制函数图像。 +# --question-- + ## --text-- 如果你知道斜率(“m”),你有一个 (x,y) 坐标点,你可以用以下哪个方程来求 “b”,在 Python 中代表 y 截距? diff --git a/curriculum/challenges/chinese/17-college-algebra-with-python/learn-ratios-and-proportions/introduction-to-college-algebra-with-python.md b/curriculum/challenges/chinese/17-college-algebra-with-python/learn-ratios-and-proportions/introduction-to-college-algebra-with-python.md index 36aaff9cfb1..392f4a0db9b 100644 --- a/curriculum/challenges/chinese/17-college-algebra-with-python/learn-ratios-and-proportions/introduction-to-college-algebra-with-python.md +++ b/curriculum/challenges/chinese/17-college-algebra-with-python/learn-ratios-and-proportions/introduction-to-college-algebra-with-python.md @@ -16,12 +16,12 @@ dashedName: introduction-to-college-algebra-with-python \- 《代数与三角学》,作者 Jay Abramson -# --question-- - -## --任务-- +# --任务-- 在你的 Google Drive 上创建一个 Colab 笔记本,这样你可以跟着视频一起学习。 +# --question-- + ## --text-- 在 Google Colab 中添加文本时,你会用什么符号来创建一个将出现在目录中的标题? diff --git a/curriculum/challenges/chinese/17-college-algebra-with-python/learn-ratios-and-proportions/ratios-and-proportions-extra.md b/curriculum/challenges/chinese/17-college-algebra-with-python/learn-ratios-and-proportions/ratios-and-proportions-extra.md index 703d0e9760f..4dcb9df3649 100644 --- a/curriculum/challenges/chinese/17-college-algebra-with-python/learn-ratios-and-proportions/ratios-and-proportions-extra.md +++ b/curriculum/challenges/chinese/17-college-algebra-with-python/learn-ratios-and-proportions/ratios-and-proportions-extra.md @@ -10,12 +10,12 @@ dashedName: ratios-and-proportions-extra 本节最后一个视频将告诉你如何在其他应用中使用比例,如货币汇率和单位转换。 它还将向你展示更多关于设置你的笔记本和完成练习任务的信息。 -# --question-- - -## --任务-- +# --任务-- 打开以下 Colab 笔记本,运行单元格,然后练习解决一步代数问题。作为奖励,看看生成练习题的代码。 +# --question-- + ## --text-- 0.9999......(重复 9)的另一种写法是什么? diff --git a/curriculum/challenges/chinese/17-college-algebra-with-python/learn-ratios-and-proportions/solving-proportions.md b/curriculum/challenges/chinese/17-college-algebra-with-python/learn-ratios-and-proportions/solving-proportions.md index 02a4fa98ecc..6d9d544fe11 100644 --- a/curriculum/challenges/chinese/17-college-algebra-with-python/learn-ratios-and-proportions/solving-proportions.md +++ b/curriculum/challenges/chinese/17-college-algebra-with-python/learn-ratios-and-proportions/solving-proportions.md @@ -12,12 +12,12 @@ dashedName: solving-proportions 这是和视频配套的 Colab 笔记本。如果你还没有这样做,请设置好上一个视频中你的代数 Colab 笔记本。 然后,将本视频中的代码添加到其中。 -# --question-- - -## --任务-- +# --任务-- 将视频中的代码添加到你在第一步创建的代数 Colab 笔记本中。 +# --question-- + ## --text-- 在求解一个比例时,如果一个分子是零,另一个分子必须是零,该语句才成立吗? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md index 04d809176cc..d5de7121c15 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-do-while/ and complete all the tasks for the "Add Looping Logic to Your Code Using the do-while and while Statements in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Add Looping Logic to Your Code Using the `do`-`while` and `while` Statements in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- A developer needs to iterate through an array of items to find one that matches a certain criteria. Which is the best iteration statement for this purpose? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md index d0087ce5be8..ee50cb1473b 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-switch-case/ and complete all the tasks for the "Branch the Flow of Code Using the switch-case Construct in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Branch the Flow of Code Using the `switch`-`case` Construct in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What is the purpose of the `break` keyword? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md index b34b20dcdd7..a837a683f26 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/challenge-project-develop-branching-looping-structures-c-sharp/ and complete all the tasks for the "Challenge Project - Develop Branching and Looping Structures in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Develop Branching and Looping Structures in C# challenge project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- A developer needs to create an iteration statement. Under what condition is a `while` statement a better choice than a `do` statement? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md index bf5a4084719..68fae6e49b2 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-code-blocks/ and complete all the tasks for the "Control Variable Scope and Logic Using Code Blocks in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Control Variable Scope and Logic Using Code Blocks in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following statements is true about showing/removing the curly braces for code blocks associated with an `if` statement? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md index 3f503f69e32..f1d60edd59a 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-evaluate-boolean-expressions/ and complete all the tasks for the "Evaluate Boolean Expressions to Make Decisions in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Evaluate Boolean Expressions to Make Decisions in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following lines of code is a valid use of the conditional operator? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md index f23006f2793..a678783a004 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-develop-conditional-branching-looping/ and complete all the tasks for the "Guided Project - Develop Conditional Branching and Looping Structures in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Develop Conditional Branching and Looping Structures in C# guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- When is it appropriate to use a `switch-case` construct rather than a `if-elseif-else` construct? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md index 29f7fbe4ca9..d85cd9e79c5 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-for/ and complete all the tasks for the "Iterate Through a Code Block Using the for Statement in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Iterate Through a Code Block Using the `for` Statement in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following `for` statements is correct? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md index 597a1daa754..b4c34681581 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-if-elseif-else/ and complete all the tasks for the "Add Decision Logic to Your Code Using if, else, and else if statements in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Add Decision Logic to Your Code Using `if`, `else`, and `else if` Statements in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the choices below is not a valid operator in C#? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md index aeeed01382f..64ee30462ef 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-call-methods/ and complete all the tasks for the "Call Methods From the .NET Class Library Using C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Call Methods from the .NET Class Library Using C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What is an object? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md index 4124a3e48d0..c19935da753 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/challenge-project-arrays-iteration-selection/ and complete all the tasks for the "Challenge Project - Develop foreach and if-elseif-else Structures to Process Array Data in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Develop `foreach` and `if`-`elseif`-`else` Structures to Process Array Data in C# challenge project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- A developer is working with two other developers to update a collection of applications. The developers will use code comments during the update process. Which of the following describes an appropriate use of code comments? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md index ff048d90565..221d8229223 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-readable-code/ and complete all the tasks for the "Create Readable Code with Conventions, Whitespace, and Comments in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Create Readable Code with Conventions, Whitespace, and Comments in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following is a bad reason to use a code comment? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md index 94f87df9df4..af1892b527b 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-arrays-iteration-selection/ and complete all the tasks for the "Guided Project - Develop foreach and if-elseif-else Structures to Process Array Data in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Develop `foreach` and `if`-`elseif`-`else` Structures to Process Array Data in C# guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- A developer writes an application that uses a `foreach` loop to iterate through an array containing 20 elements. After the application is complete, the developer learns that the array must be updated to include 40 elements. The application needs to examine all 40 array elements. Which of the following items describes the required code update? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md index 293d196cf6f..772087d66a9 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/install-configure-visual-studio-code/ and complete all the tasks for the "Install and Configure Visual Studio Code" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Install and Configure Visual Studio Code module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following choices provides the best description of an Integrated Development Environment (IDE)? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md index 2e1bc53cae6..33713c19393 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-arrays/ and complete all the tasks for the "Store and Iterate Through Sequences of Data Using Arrays and the foreach Statement in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Store and Iterate Through Sequences of Data Using Arrays and the `foreach` Statement in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following foreach statements is syntactically correct? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md index 1f9c05bfa10..18794d3b5af 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/challenge-project-create-mini-game/ and complete all the tasks for the "Challenge Project - Create a Mini-Game" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Create a Mini-Game challenge project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- A developer wants to create a method that returns a value in an array. Which of the following options would be a good choice for a method signature? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md index f30799e881f..01aaf75c313 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/create-c-sharp-methods-return-values/ and complete all the tasks for the "Create C# Methods that Return Values" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Create C# Methods that Return Values module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following options correctly returns a `string` value? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md index c576ee4c155..44f48d4b8c9 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/create-c-sharp-methods-parameters/ and complete all the tasks for the "Create C# Methods with Parameters" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Create C# Methods with Parameters module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Given the method signature, diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md index aea8d011c19..15877a13f97 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-visit-petting-zoo/ and complete all the tasks for the "Guided Project - Plan a Petting Zoo Visit" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Plan a Petting Zoo Visit guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What is the purpose of defining an optional parameter in a method? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md index c7bccb05699..7e6313f4a57 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/write-first-c-sharp-method/ and complete all the tasks for the "Write Your First C# Method" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Write Your First C# Method module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following correctly declares a method? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md index 52415dc17c0..88425acb0d1 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/challenge-project-debug-c-sharp-console-application/ and complete all the tasks for the "Challenge Project - Debug a C# Console Application Using Visual Studio Code" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Debug a C# Console Application Using Visual Studio Code challenge project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following options can be used set a breakpoint in Visual Studio Code? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md index 3a43bedeeff..82396ebc624 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/create-throw-exceptions-c-sharp/ and complete all the tasks for the "Create and Throw Exceptions in C# Console Applications" module. This is **required** earn to the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Create and Throw Exceptions in C# Console Applications module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- When should a method throw an exception? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md index c96c6dbf3d0..33d1914183f 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-debug-handle-exceptions-c-sharp-console-application/ and complete all the tasks for the "Guided Project - Debug and Handle Exceptions in a C# Console Application Using Visual Studio Code" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Debug and Handle Exceptions in a C# Console Application Using Visual Studio Code guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- When is an `ArgumentOutOfRangeException` exception thrown? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md index a437297321d..d77786e00f0 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/implement-exception-handling-c-sharp/ and complete all the tasks for the "Implement Exception Handling in C# Console Applications" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Implement Exception Handling in C# Console Applications module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- When is an `ArrayTypeMismatchException` exception thrown? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md index cf989a73210..eaf0a57a505 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/implement-visual-studio-code-debugging-tools/ and complete all the tasks for the "Implement the Visual Studio Code Debugging Tools for C#" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Implement the Visual Studio Code Debugging Tools for C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which section of the RUN AND DEBUG view is used to track the current point of execution within the running application? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md index fb54c916c41..66529f25875 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/review-principles-code-debugging-exception-handling-c-sharp/ and complete all the tasks for the "Review the Principles of Code Debugging and Exception Handling" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Review the Principles of Code Debugging and Exception Handling module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What is the relationship between the type of exception and the information it contains? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md index 57357fa507f..3283ae458e5 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/challenge-project-work-variable-data-c-sharp/ and complete all the tasks for the "Challenge Project - Work with Variable Data in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Work with Variable Data in C# challenge project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- To sort a string array, why is it important to use the `String.Trim()` method on each array element before sorting? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md index cfc6e5f6417..90ad0c24ddc 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-choose-data-type/ and complete all the tasks for the "Choose the Correct Data Type in Your C# Code" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Choose the Correct Data Type in Your C# Code module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- A piece of code must store whole numeric values between negative and positive `1,000,000`. Which data type should you choose? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md index 7e3cccdbf6c..2f81848ec0c 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-convert-cast/ and complete all the tasks for the "Convert Data Types Using Casting and Conversion Techniques in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Convert Data Types Using Casting and Conversion Techniques in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What type of action is being performed when changing a `float` into an `int`? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md index 25db424abb8..4f13971f084 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-format-strings/ and complete all the tasks for the "Format Alphanumeric Data for Presentation in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Format Alphanumeric Data for Presentation in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- For the C# code `Console.WriteLine("C110".PadLeft(6, '0'));`, which is the expected output? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md index 41a67d95996..d70b33e0034 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-work-variable-data-c-sharp/ and complete all the tasks for the "Guided Project - Work with Variable Data in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Work with Variable Data in C# guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- For the code `decimal.TryParse(numberString, out myConvert))` when the type of `numberString` is a String. diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md index 7a75db01628..f3193f3dfc2 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-modify-content/ and complete all the tasks for the "Modify the Content of Strings Using Built-In String Data Type Methods in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Modify the Content of Strings Using Built-In String Data Type Methods in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which method finds the next index of either the `-` char, the `=` char, or the `_` char? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md index f51f67bd1d7..14353de4a63 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-arrays-operations/ and complete all the tasks for the "Perform Operations on Arrays Using Helper Methods in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Perform Operations on Arrays Using Helper Methods in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which method changes the order of items in an `string` array? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md index 7a7836123bb..131c73af39c 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-calculate-print-student-grades/ and complete all the tasks for the "Guided Project - Calculate and Print Student Grades" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Calculate and Print Student Grades guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What is wrong with the following code? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md index f4d5d576477..6a5491e8f12 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-calculate-final-gpa/ and complete all the tasks for the "Guided Project - Calculate Final GPA" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Calculate Final GPA guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Suppose `decimal gradePointAverage = 3.99872831m;`. diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md index 09ea0a4fd28..71e056d641f 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-basic-operations/ and complete all the tasks for the "Perform Basic Operations on Numbers in C#" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Perform Basic Operations on Numbers in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What is the value of the following result? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md index 8fe6df7466b..6a00bd662df 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-basic-formatting/ and complete all the tasks for the "Perform Basic String Formatting in C#" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Perform Basic String Formatting in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following lines of code correctly uses string interpolation assuming that the variable `value` is a string? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md index 8c1bb0619d3..f229f0d8387 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-literals-variables/ and complete all the tasks for the "Store and Retrieve Data Using Literal and Variable Values in C#" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Store and Retrieve Data Using Literal and Variable Values in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following lines of code creates a variable correctly? diff --git a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md index c9df73357cb..170d70f6c11 100644 --- a/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md +++ b/curriculum/challenges/chinese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md @@ -12,12 +12,12 @@ dashedName: write-your-first-c-sharp-code 1. 跳转到 https://learn.microsoft.com/training/modules/csharp-write-first/,然后完成“编写第一个 C# 代码”模块的所有任务。 这是在 Microsoft Learn 上获得“使用 C# 编写第一个代码”的奖杯以及参加认证考试所**必需**的。 1. 完成后,返回并正确回答下面的问题。 -# --question-- - -## --assignment-- +# --assignment-- Complete the Write Your First C# Code module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- `Console.Write` 和 `Console.WriteLine`有什么区别? diff --git a/curriculum/challenges/espanol/16-the-odin-project/top-learn-html-foundations/html-foundations-question-a.md b/curriculum/challenges/espanol/16-the-odin-project/top-learn-html-foundations/html-foundations-question-a.md index 26dcaf81d51..138c596a766 100644 --- a/curriculum/challenges/espanol/16-the-odin-project/top-learn-html-foundations/html-foundations-question-a.md +++ b/curriculum/challenges/espanol/16-the-odin-project/top-learn-html-foundations/html-foundations-question-a.md @@ -26,12 +26,12 @@ HTML has a vast list of predefined tags that you can use to create all kinds of Using the correct elements for content is called semantic HTML. You will explore this in much more depth later on in the curriculum. -# --question-- - -## --assignment-- +# --assignment-- Watch Kevin Powell’s [Introduction to HTML video](https://www.youtube.com/watch?v=LGQuIIv2RVA&list=PL4-IK0AVhVjM0xE0K2uZRvsM7LkIhsPT-) +# --question-- + ## --text-- What are HTML tags? diff --git a/curriculum/challenges/espanol/16-the-odin-project/top-learn-html-foundations/html-foundations-question-e.md b/curriculum/challenges/espanol/16-the-odin-project/top-learn-html-foundations/html-foundations-question-e.md index 58e4fab1b96..0a6e5658f3d 100644 --- a/curriculum/challenges/espanol/16-the-odin-project/top-learn-html-foundations/html-foundations-question-e.md +++ b/curriculum/challenges/espanol/16-the-odin-project/top-learn-html-foundations/html-foundations-question-e.md @@ -11,12 +11,12 @@ HTML and CSS are two languages that work together to create everything that you Many helpful resources out there keep referring to HTML and CSS as programming languages, but if you want to get technical, labeling them as such is not quite accurate. This is because they are only concerned with presenting information. They are not used to program logic. JavaScript, which you will learn in the next section, is a programming language because it’s used to make webpages do things. Yet, there is quite a lot you can do with just HTML and CSS, and you will definitely need them both. Throughout our curriculum, the following lessons focus on giving you the tools you need to succeed once you reach JavaScript content. -# --question-- - -## --assignment-- +# --assignment-- Read the HTML vs CSS vs JavaScript article. It is a quick overview of the relationships between HTML, CSS, and JavaScript. +# --question-- + ## --text-- Which of the following statements is true? @@ -37,5 +37,3 @@ HTML and CSS are used to add style to a webpage, and JavaScript is used to creat ## --video-solution-- 2 - - diff --git a/curriculum/challenges/espanol/16-the-odin-project/top-learn-html-foundations/html-foundations-question-g.md b/curriculum/challenges/espanol/16-the-odin-project/top-learn-html-foundations/html-foundations-question-g.md index 16299d58648..29cc79ceab3 100644 --- a/curriculum/challenges/espanol/16-the-odin-project/top-learn-html-foundations/html-foundations-question-g.md +++ b/curriculum/challenges/espanol/16-the-odin-project/top-learn-html-foundations/html-foundations-question-g.md @@ -12,9 +12,7 @@ The final element needed to complete the HTML boilerplate is the `` elemen To complete the boilerplate, add a `body` element to the `index.html` file. The `body` element also goes within the `html` element and is always below the `head` element, like so: -# --question-- - -## --assignment-- +# --assignment-- Watch and follow along to Kevin Powell’s brilliant Building your first web page video above. @@ -26,6 +24,8 @@ Build some muscle memory by deleting the contents of the `index.html` file and t Run your boilerplate through this [HTML validator](https://www.freeformatter.com/html-validator.html). Validators ensure your markup is correct and are an excellent learning tool, as they provide feedback on syntax errors you may be making often and aren’t aware of, such as missing closing tags and extra spaces in your HTML. +# --question-- + ## --text-- What is the purpose of the `body` element? diff --git a/curriculum/challenges/espanol/16-the-odin-project/top-links-and-images/links-and-images-question-a.md b/curriculum/challenges/espanol/16-the-odin-project/top-links-and-images/links-and-images-question-a.md index b4d237448f3..09759d1d3e7 100644 --- a/curriculum/challenges/espanol/16-the-odin-project/top-links-and-images/links-and-images-question-a.md +++ b/curriculum/challenges/espanol/16-the-odin-project/top-links-and-images/links-and-images-question-a.md @@ -39,12 +39,12 @@ By default, any text wrapped with an anchor tag without a `href` attribute will It’s worth noting you can use anchor tags to link to any kind of resource on the internet, not just other HTML documents. You can link to videos, pdf files, images, and so on, but for the most part, you will be linking to other HTML documents. -# --question-- - -## --assignment-- +# --assignment-- Watch Kevin Powell’s HTML Links video above. +# --question-- + ## --text-- What HTML tag is used to create a link? diff --git a/curriculum/challenges/espanol/16-the-odin-project/top-links-and-images/links-and-images-question-d.md b/curriculum/challenges/espanol/16-the-odin-project/top-links-and-images/links-and-images-question-d.md index 37eebffbabf..19e8da36314 100644 --- a/curriculum/challenges/espanol/16-the-odin-project/top-links-and-images/links-and-images-question-d.md +++ b/curriculum/challenges/espanol/16-the-odin-project/top-links-and-images/links-and-images-question-d.md @@ -85,12 +85,12 @@ In many cases, this will work just fine; however, you can still run into unexpec ``` -# --question-- - -## --assignment-- +# --assignment-- Watch Kevin Powell’s HTML File Structure video above. +# --question-- + ## --text-- What is the difference between an absolute and a relative link? diff --git a/curriculum/challenges/espanol/16-the-odin-project/top-links-and-images/links-and-images-question-e.md b/curriculum/challenges/espanol/16-the-odin-project/top-links-and-images/links-and-images-question-e.md index ae008078088..8ac3815d177 100644 --- a/curriculum/challenges/espanol/16-the-odin-project/top-links-and-images/links-and-images-question-e.md +++ b/curriculum/challenges/espanol/16-the-odin-project/top-links-and-images/links-and-images-question-e.md @@ -71,12 +71,12 @@ The `alt` attribute is used to describe an image. It will be used in place of th This is how the The Odin Project logo example you used earlier looks with an `alt` attribute included: -# --question-- - -## --assignment-- +# --assignment-- Watch Kevin Powell’s HTML Images Video above. +# --question-- + ## --text-- Which tag is used to display an image? diff --git a/curriculum/challenges/espanol/16-the-odin-project/top-links-and-images/links-and-images-question-h.md b/curriculum/challenges/espanol/16-the-odin-project/top-links-and-images/links-and-images-question-h.md index 71157081ae7..f7ed108d84e 100644 --- a/curriculum/challenges/espanol/16-the-odin-project/top-links-and-images/links-and-images-question-h.md +++ b/curriculum/challenges/espanol/16-the-odin-project/top-links-and-images/links-and-images-question-h.md @@ -70,12 +70,12 @@ The `alt` attribute is used to describe an image. It will be used in place of th This is how the The Odin Project logo example you used earlier looks with an alt attribute included: -# --question-- - -## --assignment-- +# --assignment-- Read about the four main image formats that can be used on the web. +# --question-- + ## --text-- What are the four main image formats that you can use for images on the web? diff --git a/curriculum/challenges/espanol/16-the-odin-project/top-the-box-model/the-box-model-question-a.md b/curriculum/challenges/espanol/16-the-odin-project/top-the-box-model/the-box-model-question-a.md index 81cc2d54518..e2882cdb454 100644 --- a/curriculum/challenges/espanol/16-the-odin-project/top-the-box-model/the-box-model-question-a.md +++ b/curriculum/challenges/espanol/16-the-odin-project/top-the-box-model/the-box-model-question-a.md @@ -13,12 +13,12 @@ To open up the inspector, you can right-click on any element of a webpage and cl Don’t get overwhelmed with all the tools you’re now seeing! For this lesson, we want to focus on the Elements and Styles panes. -# --question-- - -## --assignment-- +# --assignment-- Play around with Chrome Dev Tools and see if you can answer the following question. +# --question-- + ## --text-- Which panes should you focus on in the Chrome Dev Tools for inspecting and debugging HTML and CSS? diff --git a/curriculum/challenges/espanol/16-the-odin-project/top-the-box-model/the-box-model-question-c.md b/curriculum/challenges/espanol/16-the-odin-project/top-the-box-model/the-box-model-question-c.md index 84cee19aea0..25a32e0f581 100644 --- a/curriculum/challenges/espanol/16-the-odin-project/top-the-box-model/the-box-model-question-c.md +++ b/curriculum/challenges/espanol/16-the-odin-project/top-the-box-model/the-box-model-question-c.md @@ -14,12 +14,12 @@ When an element is selected, the Styles tab will show all the currently applied ![Overwritten style](https://cdn.statically.io/gh/TheOdinProject/curriculum/f8fd38fc62578d8e8368f5303126215a492847f0/foundations/html_css/inspecting-html-and-css/imgs/03.png) -# --question-- - -## --assignment-- +# --assignment-- Play around with Chrome Dev Tools and see if you can answer the following question. +# --question-- + ## --text-- Which feature in the Elements pane allows you to select any element on a webpage by hovering over it? diff --git a/curriculum/challenges/espanol/16-the-odin-project/top-the-box-model/the-box-model-question-d.md b/curriculum/challenges/espanol/16-the-odin-project/top-the-box-model/the-box-model-question-d.md index 4d882631471..a4d810760a5 100644 --- a/curriculum/challenges/espanol/16-the-odin-project/top-the-box-model/the-box-model-question-d.md +++ b/curriculum/challenges/espanol/16-the-odin-project/top-the-box-model/the-box-model-question-d.md @@ -14,13 +14,12 @@ When an element is selected, the Styles tab will show all the currently applied ![Overwritten style](https://cdn.statically.io/gh/TheOdinProject/curriculum/f8fd38fc62578d8e8368f5303126215a492847f0/foundations/html_css/inspecting-html-and-css/imgs/03.png) - -# --question-- - -## --assignment-- +# --assignment-- Play around with Chrome Dev Tools and see if you can answer the following question. +# --question-- + ## --text-- In the Styles pane, what information can you view about an element when it is selected? diff --git a/curriculum/challenges/espanol/16-the-odin-project/top-the-box-model/the-box-model-question-f.md b/curriculum/challenges/espanol/16-the-odin-project/top-the-box-model/the-box-model-question-f.md index a91d049aee3..96e12157b13 100644 --- a/curriculum/challenges/espanol/16-the-odin-project/top-the-box-model/the-box-model-question-f.md +++ b/curriculum/challenges/espanol/16-the-odin-project/top-the-box-model/the-box-model-question-f.md @@ -16,13 +16,12 @@ Every single thing on a webpage is a rectangular box. These boxes can have other } ``` - -# --question-- - -## --assignment-- +# --assignment-- Add a border to every element on the page and see how the boxes are laid out. +# --question-- + ## --text-- What is the fundamental concept in CSS that helps you understand the structure of elements as rectangular boxes? diff --git a/curriculum/challenges/espanol/16-the-odin-project/top-the-box-model/the-box-model-question-g.md b/curriculum/challenges/espanol/16-the-odin-project/top-the-box-model/the-box-model-question-g.md index b8c981a7aa9..fdd4840cfa0 100644 --- a/curriculum/challenges/espanol/16-the-odin-project/top-the-box-model/the-box-model-question-g.md +++ b/curriculum/challenges/espanol/16-the-odin-project/top-the-box-model/the-box-model-question-g.md @@ -20,12 +20,12 @@ Be sure to study the diagrams carefully. ![the box model](https://cdn.statically.io/gh/TheOdinProject/curriculum/main/foundations/html_css/css-foundations/the-box-model/imgs/box-model.png) -# --question-- - -## --assignment-- +# --assignment-- Add a border to every element on the page and see how the boxes are laid out. +# --question-- + ## --text-- From inside to outside, what is the order of box-model properties? diff --git a/curriculum/challenges/espanol/16-the-odin-project/top-working-with-text/working-with-text-question-a.md b/curriculum/challenges/espanol/16-the-odin-project/top-working-with-text/working-with-text-question-a.md index 8698b62aca8..33176924828 100644 --- a/curriculum/challenges/espanol/16-the-odin-project/top-working-with-text/working-with-text-question-a.md +++ b/curriculum/challenges/espanol/16-the-odin-project/top-working-with-text/working-with-text-question-a.md @@ -32,12 +32,12 @@ Changing our example from before to use paragraph elements fixes the issue: -# --question-- - -## --assignment-- +# --assignment-- Watch and follow along to Kevin Powell’s HTML Paragraph and Headings Video above. +# --question-- + ## --text-- How do you create a paragraph in HTML? diff --git a/curriculum/challenges/espanol/16-the-odin-project/top-working-with-text/working-with-text-question-c.md b/curriculum/challenges/espanol/16-the-odin-project/top-working-with-text/working-with-text-question-c.md index 6ccf0e06658..da6e3dd4511 100644 --- a/curriculum/challenges/espanol/16-the-odin-project/top-working-with-text/working-with-text-question-c.md +++ b/curriculum/challenges/espanol/16-the-odin-project/top-working-with-text/working-with-text-question-c.md @@ -20,12 +20,12 @@ But you will probably find yourself using the `strong` element much more in comb Sometimes you will want to make text bold without giving it an important meaning. You’ll learn how to do that in the CSS lessons later in the curriculum. -# --question-- - -## --assignment-- +# --assignment-- Watch Kevin Powell’s HTML Bold and Italic Text Video above. +# --question-- + ## --text-- What element should you use to make text bold and important? diff --git a/curriculum/challenges/espanol/16-the-odin-project/top-working-with-text/working-with-text-question-g.md b/curriculum/challenges/espanol/16-the-odin-project/top-working-with-text/working-with-text-question-g.md index 5f5d141fa46..23881db5be0 100644 --- a/curriculum/challenges/espanol/16-the-odin-project/top-working-with-text/working-with-text-question-g.md +++ b/curriculum/challenges/espanol/16-the-odin-project/top-working-with-text/working-with-text-question-g.md @@ -21,12 +21,12 @@ Writing an HTML comment is simple: You just enclose the comment with ` ``` -# --question-- - -## --assignment-- +# --assignment-- To get some practice working with text in HTML, create a plain blog article page which uses different headings, uses paragraphs, and has some text in the paragraphs bolded and italicized. You can use [Lorem Ipsum](https://loremipsum.io) to generate dummy text, in place of real text as you build your sites. +# --question-- + ## --text-- How do you create HTML comments? diff --git a/curriculum/challenges/espanol/16-the-odin-project/top-working-with-text/working-with-text-question-h.md b/curriculum/challenges/espanol/16-the-odin-project/top-working-with-text/working-with-text-question-h.md index c20b4de097a..29feb0cf613 100644 --- a/curriculum/challenges/espanol/16-the-odin-project/top-working-with-text/working-with-text-question-h.md +++ b/curriculum/challenges/espanol/16-the-odin-project/top-working-with-text/working-with-text-question-h.md @@ -22,9 +22,7 @@ Ordered lists are created using the `
          ` element. Each individual item in them -# --question-- - -## --assignment-- +# --assignment-- Watch the first three minutes of Kevin Powell's video on Ordered and Unordered lists above. @@ -44,6 +42,8 @@ Make an unordered list of places you’d like to visit someday. Make an ordered list of your all time top 5 favorite video games or movies. +# --question-- + ## --text-- What HTML tag is used to create an unordered list? diff --git a/curriculum/challenges/espanol/17-college-algebra-with-python/learn-applications-of-linear-systems/word-problems.md b/curriculum/challenges/espanol/17-college-algebra-with-python/learn-applications-of-linear-systems/word-problems.md index 0a15305c01e..1b2711c96f6 100644 --- a/curriculum/challenges/espanol/17-college-algebra-with-python/learn-applications-of-linear-systems/word-problems.md +++ b/curriculum/challenges/espanol/17-college-algebra-with-python/learn-applications-of-linear-systems/word-problems.md @@ -16,9 +16,7 @@ This first video will look at key words that tell you what math operation to use \- Algebra and Trigonometry by Jay Abramson -# --question-- - -## --assignment-- +# --assignment-- Complete the problems on pages 63, 75, 85, and 118 from "Business Math, a Step-by-Step Handbook (2021)". @@ -26,6 +24,8 @@ Complete the problems on pages 63, 75, 85, and 118 from "Business Math, a Step-b Complete the problems on pages 304, 308, and 321 from "Algebra and Trigonometry". +# --question-- + ## --text-- Which of the following key words indicate subtraction? diff --git a/curriculum/challenges/espanol/17-college-algebra-with-python/learn-business-applications-of-college-algebra/demand-and-revenue.md b/curriculum/challenges/espanol/17-college-algebra-with-python/learn-business-applications-of-college-algebra/demand-and-revenue.md index ca2ea6f7796..0a70a02cf1d 100644 --- a/curriculum/challenges/espanol/17-college-algebra-with-python/learn-business-applications-of-college-algebra/demand-and-revenue.md +++ b/curriculum/challenges/espanol/17-college-algebra-with-python/learn-business-applications-of-college-algebra/demand-and-revenue.md @@ -16,12 +16,12 @@ Here is the Business Math, a Step-by-Step Handbook (2021) by Jean-Paul Oliver -# --question-- - -## --assignment-- +# --assignment-- Complete the problems on pages 155 and 163 from "Business Math, a Step-by-Step Handbook (2021)". +# --question-- + ## --text-- Which of the following business equations is not correct? diff --git a/curriculum/challenges/espanol/17-college-algebra-with-python/learn-fractions-and-decimals/converting-fractions-and-decimals.md b/curriculum/challenges/espanol/17-college-algebra-with-python/learn-fractions-and-decimals/converting-fractions-and-decimals.md index 7386db1e3a1..5224ac7cf0a 100644 --- a/curriculum/challenges/espanol/17-college-algebra-with-python/learn-fractions-and-decimals/converting-fractions-and-decimals.md +++ b/curriculum/challenges/espanol/17-college-algebra-with-python/learn-fractions-and-decimals/converting-fractions-and-decimals.md @@ -12,12 +12,12 @@ The first video will show you how to convert between fractions, decimals, and pe Here is the Colab notebook used in the video. Use this code as a model, and write your own code to convert fractions and decimals. -# --question-- - -## --assignment-- +# --assignment-- Add the code to convert fractions and decimals to your algebra Colab notebook. +# --question-- + ## --text-- Which of the following correctly represents "three hundredths" as a decimal? diff --git a/curriculum/challenges/espanol/17-college-algebra-with-python/learn-fractions-and-decimals/fractions-and-decimals-extra.md b/curriculum/challenges/espanol/17-college-algebra-with-python/learn-fractions-and-decimals/fractions-and-decimals-extra.md index e1ac138f79e..7c367228f0c 100644 --- a/curriculum/challenges/espanol/17-college-algebra-with-python/learn-fractions-and-decimals/fractions-and-decimals-extra.md +++ b/curriculum/challenges/espanol/17-college-algebra-with-python/learn-fractions-and-decimals/fractions-and-decimals-extra.md @@ -12,9 +12,7 @@ The following video will show you one way to set up your Google Colaboratory not Here is the Colab notebook used in this video so you can use it as a model. -# --question-- - -## --assignment-- +# --assignment-- Add the code to factor and solve for a variable to your algebra Colab notebook. @@ -22,6 +20,8 @@ Add the code to factor and solve for a variable to your algebra Colab notebook. Run the code in the following notebook to get practice converting fractions and decimals. As a bonus, look at the code used to generate the practice problems. +# --question-- + ## --text-- Which of the following languages can you not use in Google Colaboratory? diff --git a/curriculum/challenges/espanol/17-college-algebra-with-python/learn-functions-and-graphing/functions-and-graphing-extra.md b/curriculum/challenges/espanol/17-college-algebra-with-python/learn-functions-and-graphing/functions-and-graphing-extra.md index d5516d90fb2..4cc6201ae95 100644 --- a/curriculum/challenges/espanol/17-college-algebra-with-python/learn-functions-and-graphing/functions-and-graphing-extra.md +++ b/curriculum/challenges/espanol/17-college-algebra-with-python/learn-functions-and-graphing/functions-and-graphing-extra.md @@ -12,12 +12,12 @@ This next video will show you the connection between functions and graphing. Not Here is the Colab notebook to go with this video. -# --question-- - -## --assignment-- +# --assignment-- Add code to your algebra Colab notebook for functions and graphing. +# --question-- + ## --text-- What Python library would you import to create arrays that you can graph? diff --git a/curriculum/challenges/espanol/17-college-algebra-with-python/learn-functions-and-graphing/functions.md b/curriculum/challenges/espanol/17-college-algebra-with-python/learn-functions-and-graphing/functions.md index a5f13dca979..d511fecf032 100644 --- a/curriculum/challenges/espanol/17-college-algebra-with-python/learn-functions-and-graphing/functions.md +++ b/curriculum/challenges/espanol/17-college-algebra-with-python/learn-functions-and-graphing/functions.md @@ -12,12 +12,12 @@ This first video will show you what it means to be a function, and then it will Here is the Colab notebook used in this and the next videos. -# --question-- - -## --assignment-- +# --assignment-- Add code to your algebra Colab notebook that creates Python functions for decimal-to-fraction conversions +# --question-- + ## --text-- After defining a function in Python, indent each line of the function how many spaces? diff --git a/curriculum/challenges/espanol/17-college-algebra-with-python/learn-functions-and-graphing/graphing.md b/curriculum/challenges/espanol/17-college-algebra-with-python/learn-functions-and-graphing/graphing.md index ac237fcbcb2..3c170849ede 100644 --- a/curriculum/challenges/espanol/17-college-algebra-with-python/learn-functions-and-graphing/graphing.md +++ b/curriculum/challenges/espanol/17-college-algebra-with-python/learn-functions-and-graphing/graphing.md @@ -12,9 +12,7 @@ This next video will show you the connection between functions and graphing. Not Here is the Colab notebook to go with the last two videos so you can start making your own graphs. -# --question-- - -## --assignment-- +# --assignment-- Add code to your algebra Colab notebook for functions and graphing. @@ -22,6 +20,8 @@ Add code to your algebra Colab notebook for functions and graphing. Run the following notebook to see more ways to create graphs using algebra and Python. +# --question-- + ## --text-- Which of the following would put a blue line on a graph? diff --git a/curriculum/challenges/espanol/17-college-algebra-with-python/learn-how-to-graph-systems-of-equations/graphing-systems.md b/curriculum/challenges/espanol/17-college-algebra-with-python/learn-how-to-graph-systems-of-equations/graphing-systems.md index d9dca33678b..7224ab905a2 100644 --- a/curriculum/challenges/espanol/17-college-algebra-with-python/learn-how-to-graph-systems-of-equations/graphing-systems.md +++ b/curriculum/challenges/espanol/17-college-algebra-with-python/learn-how-to-graph-systems-of-equations/graphing-systems.md @@ -12,12 +12,12 @@ This first video will show you how to graph systems of equations with written ma Here is the Colab notebook used in this video. -# --question-- - -## --assignment-- +# --assignment-- Add code from the video to the algebra notebook you are building, and test it with different functions. +# --question-- + ## --text-- The numpy `linspace()` function takes three arguments to create an array. Which of the following arguments does it not take? diff --git a/curriculum/challenges/espanol/17-college-algebra-with-python/learn-how-to-solve-for-x/how-to-solve-for-x-extra.md b/curriculum/challenges/espanol/17-college-algebra-with-python/learn-how-to-solve-for-x/how-to-solve-for-x-extra.md index 5d9ca07f933..18484302ead 100644 --- a/curriculum/challenges/espanol/17-college-algebra-with-python/learn-how-to-solve-for-x/how-to-solve-for-x-extra.md +++ b/curriculum/challenges/espanol/17-college-algebra-with-python/learn-how-to-solve-for-x/how-to-solve-for-x-extra.md @@ -12,9 +12,7 @@ This video will go deeper, with more examples of how to use SymPy solve. It will Here is the Colab notebook to go along with this video. Use it to add more to the algebra Colab notebook that you are building. -# --question-- - -## --assignment-- +# --assignment-- Add the code for more ways to solve for x from the video to your algebra Colab notebook. @@ -22,6 +20,8 @@ Add the code for more ways to solve for x from the video to your algebra Colab n Open the following Colab notebook, run the cell, and practice solving one and two-step algebra problems. As a bonus, look at the code that generates the practice problems. +# --question-- + ## --text-- If you import sympy and define x as a variable, what would be the output from the following code? diff --git a/curriculum/challenges/espanol/17-college-algebra-with-python/learn-how-to-solve-for-x/solving-for-x.md b/curriculum/challenges/espanol/17-college-algebra-with-python/learn-how-to-solve-for-x/solving-for-x.md index cf99c6cfbd1..359af3680b5 100644 --- a/curriculum/challenges/espanol/17-college-algebra-with-python/learn-how-to-solve-for-x/solving-for-x.md +++ b/curriculum/challenges/espanol/17-college-algebra-with-python/learn-how-to-solve-for-x/solving-for-x.md @@ -12,12 +12,12 @@ This first video will show you the essence of algebra and then how Python code d Here is the Colab notebook to go along with this video. Add the code from the video to your algebra Colab notebook to see how to solve for X using Python. Then change the code if you want, test it, and compare it to paper-and-pencil solving. Remember the equation input needs to be in Python syntax. -# --question-- - -## --assignment-- +# --assignment-- Add the code to solve for x from the video to your algebra Colab notebook. +# --question-- + ## --text-- In Python, what is the library you import to solve algebra problems with variables? diff --git a/curriculum/challenges/espanol/17-college-algebra-with-python/learn-how-to-solve-systems-of-equations/solving-systems.md b/curriculum/challenges/espanol/17-college-algebra-with-python/learn-how-to-solve-systems-of-equations/solving-systems.md index 08847d0f8a6..fff4fb886a7 100644 --- a/curriculum/challenges/espanol/17-college-algebra-with-python/learn-how-to-solve-systems-of-equations/solving-systems.md +++ b/curriculum/challenges/espanol/17-college-algebra-with-python/learn-how-to-solve-systems-of-equations/solving-systems.md @@ -12,12 +12,12 @@ The first video will show you the math behind solving a system of two equations Here is the Colab notebook used in this video. -# --question-- - -## --assignment-- +# --assignment-- Add code to your notebook to solve and graph systems of equations +# --question-- + ## --text-- Which of the following can SymPy do that matplotlib can't do? diff --git a/curriculum/challenges/espanol/17-college-algebra-with-python/learn-linear-functions/linear-equations.md b/curriculum/challenges/espanol/17-college-algebra-with-python/learn-linear-functions/linear-equations.md index c513b57f2eb..e6b1e211b81 100644 --- a/curriculum/challenges/espanol/17-college-algebra-with-python/learn-linear-functions/linear-equations.md +++ b/curriculum/challenges/espanol/17-college-algebra-with-python/learn-linear-functions/linear-equations.md @@ -12,12 +12,12 @@ This video will show you the math behind finding the y-intercept in a linear fun Here is the Colab notebook to go with the last two videos, so you can see the formulas. -# --question-- - -## --assignment-- +# --assignment-- Add code to your algebra Colab notebook to graph a function from points or from equation input. +# --question-- + ## --text-- If you know the slope ("m") and you have one (x,y) coordinate point, which of the following equations could you use to find "b", representing the y-intercept in Python? diff --git a/curriculum/challenges/espanol/17-college-algebra-with-python/learn-ratios-and-proportions/introduction-to-college-algebra-with-python.md b/curriculum/challenges/espanol/17-college-algebra-with-python/learn-ratios-and-proportions/introduction-to-college-algebra-with-python.md index 834b288fe92..66e0414871b 100644 --- a/curriculum/challenges/espanol/17-college-algebra-with-python/learn-ratios-and-proportions/introduction-to-college-algebra-with-python.md +++ b/curriculum/challenges/espanol/17-college-algebra-with-python/learn-ratios-and-proportions/introduction-to-college-algebra-with-python.md @@ -16,12 +16,12 @@ This first video includes an introduction to the course, how it will work, and h \- Algebra and Trigonometry by Jay Abramson -# --question-- - -## --assignment-- +# --assignment-- Create an algebra Colab notebook on your google drive so you can follow along with the videos. +# --question-- + ## --text-- When adding text in Google Colab, what symbol would you use to create a heading that will appear in the table of contents? diff --git a/curriculum/challenges/espanol/17-college-algebra-with-python/learn-ratios-and-proportions/ratios-and-proportions-extra.md b/curriculum/challenges/espanol/17-college-algebra-with-python/learn-ratios-and-proportions/ratios-and-proportions-extra.md index 663f0cc63e5..170a6679d68 100644 --- a/curriculum/challenges/espanol/17-college-algebra-with-python/learn-ratios-and-proportions/ratios-and-proportions-extra.md +++ b/curriculum/challenges/espanol/17-college-algebra-with-python/learn-ratios-and-proportions/ratios-and-proportions-extra.md @@ -10,12 +10,12 @@ dashedName: ratios-and-proportions-extra The last video in this section will show you how to use proportions in other applications, such as currency exchange rates and unit conversion. It will also show you more about setting up your notebook and working through the practice assignment. -# --question-- - -## --assignment-- +# --assignment-- Open the following Colab notebook, run the cell, and practice solving one-step algebra problems. As a bonus, look at the code that generates the practice problems. +# --question-- + ## --text-- What is another way to write 0.9999... (repeating 9)? diff --git a/curriculum/challenges/espanol/17-college-algebra-with-python/learn-ratios-and-proportions/solving-proportions.md b/curriculum/challenges/espanol/17-college-algebra-with-python/learn-ratios-and-proportions/solving-proportions.md index 8371ec1655d..14a060f564e 100644 --- a/curriculum/challenges/espanol/17-college-algebra-with-python/learn-ratios-and-proportions/solving-proportions.md +++ b/curriculum/challenges/espanol/17-college-algebra-with-python/learn-ratios-and-proportions/solving-proportions.md @@ -12,12 +12,12 @@ Now we get to the math content. This video will show you how to set up and solve Here is the Colab notebook to go along with this video. If you have not done so yet, set up your algebra Colab notebook from the last video. Then, add the code from this video to it. -# --question-- - -## --assignment-- +# --assignment-- Add the code from the video to the algebra Colab notebook you created in the first step. +# --question-- + ## --text-- In solving a proportion, if one numerator is zero, does the other numerator have to be zero for the statement to be true? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md index 04d809176cc..d5de7121c15 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-do-while/ and complete all the tasks for the "Add Looping Logic to Your Code Using the do-while and while Statements in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Add Looping Logic to Your Code Using the `do`-`while` and `while` Statements in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- A developer needs to iterate through an array of items to find one that matches a certain criteria. Which is the best iteration statement for this purpose? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md index d0087ce5be8..ee50cb1473b 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-switch-case/ and complete all the tasks for the "Branch the Flow of Code Using the switch-case Construct in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Branch the Flow of Code Using the `switch`-`case` Construct in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What is the purpose of the `break` keyword? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md index b34b20dcdd7..a837a683f26 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/challenge-project-develop-branching-looping-structures-c-sharp/ and complete all the tasks for the "Challenge Project - Develop Branching and Looping Structures in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Develop Branching and Looping Structures in C# challenge project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- A developer needs to create an iteration statement. Under what condition is a `while` statement a better choice than a `do` statement? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md index bf5a4084719..68fae6e49b2 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-code-blocks/ and complete all the tasks for the "Control Variable Scope and Logic Using Code Blocks in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Control Variable Scope and Logic Using Code Blocks in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following statements is true about showing/removing the curly braces for code blocks associated with an `if` statement? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md index 3f503f69e32..f1d60edd59a 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-evaluate-boolean-expressions/ and complete all the tasks for the "Evaluate Boolean Expressions to Make Decisions in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Evaluate Boolean Expressions to Make Decisions in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following lines of code is a valid use of the conditional operator? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md index f23006f2793..a678783a004 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-develop-conditional-branching-looping/ and complete all the tasks for the "Guided Project - Develop Conditional Branching and Looping Structures in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Develop Conditional Branching and Looping Structures in C# guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- When is it appropriate to use a `switch-case` construct rather than a `if-elseif-else` construct? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md index 29f7fbe4ca9..d85cd9e79c5 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-for/ and complete all the tasks for the "Iterate Through a Code Block Using the for Statement in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Iterate Through a Code Block Using the `for` Statement in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following `for` statements is correct? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md index 597a1daa754..b4c34681581 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-if-elseif-else/ and complete all the tasks for the "Add Decision Logic to Your Code Using if, else, and else if statements in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Add Decision Logic to Your Code Using `if`, `else`, and `else if` Statements in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the choices below is not a valid operator in C#? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md index aeeed01382f..64ee30462ef 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-call-methods/ and complete all the tasks for the "Call Methods From the .NET Class Library Using C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Call Methods from the .NET Class Library Using C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What is an object? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md index 4124a3e48d0..c19935da753 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/challenge-project-arrays-iteration-selection/ and complete all the tasks for the "Challenge Project - Develop foreach and if-elseif-else Structures to Process Array Data in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Develop `foreach` and `if`-`elseif`-`else` Structures to Process Array Data in C# challenge project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- A developer is working with two other developers to update a collection of applications. The developers will use code comments during the update process. Which of the following describes an appropriate use of code comments? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md index ff048d90565..221d8229223 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-readable-code/ and complete all the tasks for the "Create Readable Code with Conventions, Whitespace, and Comments in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Create Readable Code with Conventions, Whitespace, and Comments in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following is a bad reason to use a code comment? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md index 94f87df9df4..af1892b527b 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-arrays-iteration-selection/ and complete all the tasks for the "Guided Project - Develop foreach and if-elseif-else Structures to Process Array Data in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Develop `foreach` and `if`-`elseif`-`else` Structures to Process Array Data in C# guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- A developer writes an application that uses a `foreach` loop to iterate through an array containing 20 elements. After the application is complete, the developer learns that the array must be updated to include 40 elements. The application needs to examine all 40 array elements. Which of the following items describes the required code update? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md index 293d196cf6f..772087d66a9 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/install-configure-visual-studio-code/ and complete all the tasks for the "Install and Configure Visual Studio Code" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Install and Configure Visual Studio Code module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following choices provides the best description of an Integrated Development Environment (IDE)? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md index 2e1bc53cae6..33713c19393 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-arrays/ and complete all the tasks for the "Store and Iterate Through Sequences of Data Using Arrays and the foreach Statement in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Store and Iterate Through Sequences of Data Using Arrays and the `foreach` Statement in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following foreach statements is syntactically correct? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md index 1f9c05bfa10..18794d3b5af 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/challenge-project-create-mini-game/ and complete all the tasks for the "Challenge Project - Create a Mini-Game" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Create a Mini-Game challenge project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- A developer wants to create a method that returns a value in an array. Which of the following options would be a good choice for a method signature? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md index f30799e881f..01aaf75c313 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/create-c-sharp-methods-return-values/ and complete all the tasks for the "Create C# Methods that Return Values" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Create C# Methods that Return Values module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following options correctly returns a `string` value? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md index c576ee4c155..44f48d4b8c9 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/create-c-sharp-methods-parameters/ and complete all the tasks for the "Create C# Methods with Parameters" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Create C# Methods with Parameters module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Given the method signature, diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md index aea8d011c19..15877a13f97 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-visit-petting-zoo/ and complete all the tasks for the "Guided Project - Plan a Petting Zoo Visit" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Plan a Petting Zoo Visit guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What is the purpose of defining an optional parameter in a method? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md index c7bccb05699..7e6313f4a57 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/write-first-c-sharp-method/ and complete all the tasks for the "Write Your First C# Method" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Write Your First C# Method module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following correctly declares a method? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md index 52415dc17c0..88425acb0d1 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/challenge-project-debug-c-sharp-console-application/ and complete all the tasks for the "Challenge Project - Debug a C# Console Application Using Visual Studio Code" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Debug a C# Console Application Using Visual Studio Code challenge project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following options can be used set a breakpoint in Visual Studio Code? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md index 3a43bedeeff..82396ebc624 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/create-throw-exceptions-c-sharp/ and complete all the tasks for the "Create and Throw Exceptions in C# Console Applications" module. This is **required** earn to the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Create and Throw Exceptions in C# Console Applications module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- When should a method throw an exception? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md index c96c6dbf3d0..33d1914183f 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-debug-handle-exceptions-c-sharp-console-application/ and complete all the tasks for the "Guided Project - Debug and Handle Exceptions in a C# Console Application Using Visual Studio Code" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Debug and Handle Exceptions in a C# Console Application Using Visual Studio Code guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- When is an `ArgumentOutOfRangeException` exception thrown? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md index a437297321d..d77786e00f0 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/implement-exception-handling-c-sharp/ and complete all the tasks for the "Implement Exception Handling in C# Console Applications" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Implement Exception Handling in C# Console Applications module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- When is an `ArrayTypeMismatchException` exception thrown? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md index cf989a73210..eaf0a57a505 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/implement-visual-studio-code-debugging-tools/ and complete all the tasks for the "Implement the Visual Studio Code Debugging Tools for C#" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Implement the Visual Studio Code Debugging Tools for C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which section of the RUN AND DEBUG view is used to track the current point of execution within the running application? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md index fb54c916c41..66529f25875 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/review-principles-code-debugging-exception-handling-c-sharp/ and complete all the tasks for the "Review the Principles of Code Debugging and Exception Handling" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Review the Principles of Code Debugging and Exception Handling module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What is the relationship between the type of exception and the information it contains? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md index 57357fa507f..3283ae458e5 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/challenge-project-work-variable-data-c-sharp/ and complete all the tasks for the "Challenge Project - Work with Variable Data in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Work with Variable Data in C# challenge project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- To sort a string array, why is it important to use the `String.Trim()` method on each array element before sorting? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md index cfc6e5f6417..90ad0c24ddc 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-choose-data-type/ and complete all the tasks for the "Choose the Correct Data Type in Your C# Code" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Choose the Correct Data Type in Your C# Code module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- A piece of code must store whole numeric values between negative and positive `1,000,000`. Which data type should you choose? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md index 7e3cccdbf6c..2f81848ec0c 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-convert-cast/ and complete all the tasks for the "Convert Data Types Using Casting and Conversion Techniques in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Convert Data Types Using Casting and Conversion Techniques in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What type of action is being performed when changing a `float` into an `int`? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md index 25db424abb8..4f13971f084 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-format-strings/ and complete all the tasks for the "Format Alphanumeric Data for Presentation in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Format Alphanumeric Data for Presentation in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- For the C# code `Console.WriteLine("C110".PadLeft(6, '0'));`, which is the expected output? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md index 41a67d95996..d70b33e0034 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-work-variable-data-c-sharp/ and complete all the tasks for the "Guided Project - Work with Variable Data in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Work with Variable Data in C# guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- For the code `decimal.TryParse(numberString, out myConvert))` when the type of `numberString` is a String. diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md index 7a75db01628..f3193f3dfc2 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-modify-content/ and complete all the tasks for the "Modify the Content of Strings Using Built-In String Data Type Methods in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Modify the Content of Strings Using Built-In String Data Type Methods in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which method finds the next index of either the `-` char, the `=` char, or the `_` char? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md index f51f67bd1d7..14353de4a63 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-arrays-operations/ and complete all the tasks for the "Perform Operations on Arrays Using Helper Methods in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Perform Operations on Arrays Using Helper Methods in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which method changes the order of items in an `string` array? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md index 7a7836123bb..131c73af39c 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-calculate-print-student-grades/ and complete all the tasks for the "Guided Project - Calculate and Print Student Grades" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Calculate and Print Student Grades guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What is wrong with the following code? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md index f4d5d576477..6a5491e8f12 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-calculate-final-gpa/ and complete all the tasks for the "Guided Project - Calculate Final GPA" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Calculate Final GPA guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Suppose `decimal gradePointAverage = 3.99872831m;`. diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md index 09ea0a4fd28..71e056d641f 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-basic-operations/ and complete all the tasks for the "Perform Basic Operations on Numbers in C#" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Perform Basic Operations on Numbers in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What is the value of the following result? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md index 8fe6df7466b..6a00bd662df 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-basic-formatting/ and complete all the tasks for the "Perform Basic String Formatting in C#" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Perform Basic String Formatting in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following lines of code correctly uses string interpolation assuming that the variable `value` is a string? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md index 8c1bb0619d3..f229f0d8387 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-literals-variables/ and complete all the tasks for the "Store and Retrieve Data Using Literal and Variable Values in C#" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Store and Retrieve Data Using Literal and Variable Values in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following lines of code creates a variable correctly? diff --git a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md index c2b06ef0c32..e9da470c2a1 100644 --- a/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md +++ b/curriculum/challenges/espanol/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-write-first/ and complete all the tasks in the "Write Your First C# Code" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Write Your First C# Code module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What is the difference between `Console.Write` and `Console.WriteLine`? diff --git a/curriculum/challenges/german/16-the-odin-project/top-learn-html-foundations/html-foundations-question-a.md b/curriculum/challenges/german/16-the-odin-project/top-learn-html-foundations/html-foundations-question-a.md index 26dcaf81d51..138c596a766 100644 --- a/curriculum/challenges/german/16-the-odin-project/top-learn-html-foundations/html-foundations-question-a.md +++ b/curriculum/challenges/german/16-the-odin-project/top-learn-html-foundations/html-foundations-question-a.md @@ -26,12 +26,12 @@ HTML has a vast list of predefined tags that you can use to create all kinds of Using the correct elements for content is called semantic HTML. You will explore this in much more depth later on in the curriculum. -# --question-- - -## --assignment-- +# --assignment-- Watch Kevin Powell’s [Introduction to HTML video](https://www.youtube.com/watch?v=LGQuIIv2RVA&list=PL4-IK0AVhVjM0xE0K2uZRvsM7LkIhsPT-) +# --question-- + ## --text-- What are HTML tags? diff --git a/curriculum/challenges/german/16-the-odin-project/top-learn-html-foundations/html-foundations-question-e.md b/curriculum/challenges/german/16-the-odin-project/top-learn-html-foundations/html-foundations-question-e.md index 58e4fab1b96..0a6e5658f3d 100644 --- a/curriculum/challenges/german/16-the-odin-project/top-learn-html-foundations/html-foundations-question-e.md +++ b/curriculum/challenges/german/16-the-odin-project/top-learn-html-foundations/html-foundations-question-e.md @@ -11,12 +11,12 @@ HTML and CSS are two languages that work together to create everything that you Many helpful resources out there keep referring to HTML and CSS as programming languages, but if you want to get technical, labeling them as such is not quite accurate. This is because they are only concerned with presenting information. They are not used to program logic. JavaScript, which you will learn in the next section, is a programming language because it’s used to make webpages do things. Yet, there is quite a lot you can do with just HTML and CSS, and you will definitely need them both. Throughout our curriculum, the following lessons focus on giving you the tools you need to succeed once you reach JavaScript content. -# --question-- - -## --assignment-- +# --assignment-- Read the HTML vs CSS vs JavaScript article. It is a quick overview of the relationships between HTML, CSS, and JavaScript. +# --question-- + ## --text-- Which of the following statements is true? @@ -37,5 +37,3 @@ HTML and CSS are used to add style to a webpage, and JavaScript is used to creat ## --video-solution-- 2 - - diff --git a/curriculum/challenges/german/16-the-odin-project/top-learn-html-foundations/html-foundations-question-g.md b/curriculum/challenges/german/16-the-odin-project/top-learn-html-foundations/html-foundations-question-g.md index 16299d58648..29cc79ceab3 100644 --- a/curriculum/challenges/german/16-the-odin-project/top-learn-html-foundations/html-foundations-question-g.md +++ b/curriculum/challenges/german/16-the-odin-project/top-learn-html-foundations/html-foundations-question-g.md @@ -12,9 +12,7 @@ The final element needed to complete the HTML boilerplate is the `` elemen To complete the boilerplate, add a `body` element to the `index.html` file. The `body` element also goes within the `html` element and is always below the `head` element, like so: -# --question-- - -## --assignment-- +# --assignment-- Watch and follow along to Kevin Powell’s brilliant Building your first web page video above. @@ -26,6 +24,8 @@ Build some muscle memory by deleting the contents of the `index.html` file and t Run your boilerplate through this [HTML validator](https://www.freeformatter.com/html-validator.html). Validators ensure your markup is correct and are an excellent learning tool, as they provide feedback on syntax errors you may be making often and aren’t aware of, such as missing closing tags and extra spaces in your HTML. +# --question-- + ## --text-- What is the purpose of the `body` element? diff --git a/curriculum/challenges/german/16-the-odin-project/top-links-and-images/links-and-images-question-a.md b/curriculum/challenges/german/16-the-odin-project/top-links-and-images/links-and-images-question-a.md index b4d237448f3..09759d1d3e7 100644 --- a/curriculum/challenges/german/16-the-odin-project/top-links-and-images/links-and-images-question-a.md +++ b/curriculum/challenges/german/16-the-odin-project/top-links-and-images/links-and-images-question-a.md @@ -39,12 +39,12 @@ By default, any text wrapped with an anchor tag without a `href` attribute will It’s worth noting you can use anchor tags to link to any kind of resource on the internet, not just other HTML documents. You can link to videos, pdf files, images, and so on, but for the most part, you will be linking to other HTML documents. -# --question-- - -## --assignment-- +# --assignment-- Watch Kevin Powell’s HTML Links video above. +# --question-- + ## --text-- What HTML tag is used to create a link? diff --git a/curriculum/challenges/german/16-the-odin-project/top-links-and-images/links-and-images-question-d.md b/curriculum/challenges/german/16-the-odin-project/top-links-and-images/links-and-images-question-d.md index 37eebffbabf..19e8da36314 100644 --- a/curriculum/challenges/german/16-the-odin-project/top-links-and-images/links-and-images-question-d.md +++ b/curriculum/challenges/german/16-the-odin-project/top-links-and-images/links-and-images-question-d.md @@ -85,12 +85,12 @@ In many cases, this will work just fine; however, you can still run into unexpec ``` -# --question-- - -## --assignment-- +# --assignment-- Watch Kevin Powell’s HTML File Structure video above. +# --question-- + ## --text-- What is the difference between an absolute and a relative link? diff --git a/curriculum/challenges/german/16-the-odin-project/top-links-and-images/links-and-images-question-e.md b/curriculum/challenges/german/16-the-odin-project/top-links-and-images/links-and-images-question-e.md index ae008078088..8ac3815d177 100644 --- a/curriculum/challenges/german/16-the-odin-project/top-links-and-images/links-and-images-question-e.md +++ b/curriculum/challenges/german/16-the-odin-project/top-links-and-images/links-and-images-question-e.md @@ -71,12 +71,12 @@ The `alt` attribute is used to describe an image. It will be used in place of th This is how the The Odin Project logo example you used earlier looks with an `alt` attribute included: -# --question-- - -## --assignment-- +# --assignment-- Watch Kevin Powell’s HTML Images Video above. +# --question-- + ## --text-- Which tag is used to display an image? diff --git a/curriculum/challenges/german/16-the-odin-project/top-links-and-images/links-and-images-question-h.md b/curriculum/challenges/german/16-the-odin-project/top-links-and-images/links-and-images-question-h.md index 71157081ae7..f7ed108d84e 100644 --- a/curriculum/challenges/german/16-the-odin-project/top-links-and-images/links-and-images-question-h.md +++ b/curriculum/challenges/german/16-the-odin-project/top-links-and-images/links-and-images-question-h.md @@ -70,12 +70,12 @@ The `alt` attribute is used to describe an image. It will be used in place of th This is how the The Odin Project logo example you used earlier looks with an alt attribute included: -# --question-- - -## --assignment-- +# --assignment-- Read about the four main image formats that can be used on the web. +# --question-- + ## --text-- What are the four main image formats that you can use for images on the web? diff --git a/curriculum/challenges/german/16-the-odin-project/top-the-box-model/the-box-model-question-a.md b/curriculum/challenges/german/16-the-odin-project/top-the-box-model/the-box-model-question-a.md index 81cc2d54518..e2882cdb454 100644 --- a/curriculum/challenges/german/16-the-odin-project/top-the-box-model/the-box-model-question-a.md +++ b/curriculum/challenges/german/16-the-odin-project/top-the-box-model/the-box-model-question-a.md @@ -13,12 +13,12 @@ To open up the inspector, you can right-click on any element of a webpage and cl Don’t get overwhelmed with all the tools you’re now seeing! For this lesson, we want to focus on the Elements and Styles panes. -# --question-- - -## --assignment-- +# --assignment-- Play around with Chrome Dev Tools and see if you can answer the following question. +# --question-- + ## --text-- Which panes should you focus on in the Chrome Dev Tools for inspecting and debugging HTML and CSS? diff --git a/curriculum/challenges/german/16-the-odin-project/top-the-box-model/the-box-model-question-c.md b/curriculum/challenges/german/16-the-odin-project/top-the-box-model/the-box-model-question-c.md index 84cee19aea0..25a32e0f581 100644 --- a/curriculum/challenges/german/16-the-odin-project/top-the-box-model/the-box-model-question-c.md +++ b/curriculum/challenges/german/16-the-odin-project/top-the-box-model/the-box-model-question-c.md @@ -14,12 +14,12 @@ When an element is selected, the Styles tab will show all the currently applied ![Overwritten style](https://cdn.statically.io/gh/TheOdinProject/curriculum/f8fd38fc62578d8e8368f5303126215a492847f0/foundations/html_css/inspecting-html-and-css/imgs/03.png) -# --question-- - -## --assignment-- +# --assignment-- Play around with Chrome Dev Tools and see if you can answer the following question. +# --question-- + ## --text-- Which feature in the Elements pane allows you to select any element on a webpage by hovering over it? diff --git a/curriculum/challenges/german/16-the-odin-project/top-the-box-model/the-box-model-question-d.md b/curriculum/challenges/german/16-the-odin-project/top-the-box-model/the-box-model-question-d.md index 4d882631471..a4d810760a5 100644 --- a/curriculum/challenges/german/16-the-odin-project/top-the-box-model/the-box-model-question-d.md +++ b/curriculum/challenges/german/16-the-odin-project/top-the-box-model/the-box-model-question-d.md @@ -14,13 +14,12 @@ When an element is selected, the Styles tab will show all the currently applied ![Overwritten style](https://cdn.statically.io/gh/TheOdinProject/curriculum/f8fd38fc62578d8e8368f5303126215a492847f0/foundations/html_css/inspecting-html-and-css/imgs/03.png) - -# --question-- - -## --assignment-- +# --assignment-- Play around with Chrome Dev Tools and see if you can answer the following question. +# --question-- + ## --text-- In the Styles pane, what information can you view about an element when it is selected? diff --git a/curriculum/challenges/german/16-the-odin-project/top-the-box-model/the-box-model-question-f.md b/curriculum/challenges/german/16-the-odin-project/top-the-box-model/the-box-model-question-f.md index a91d049aee3..96e12157b13 100644 --- a/curriculum/challenges/german/16-the-odin-project/top-the-box-model/the-box-model-question-f.md +++ b/curriculum/challenges/german/16-the-odin-project/top-the-box-model/the-box-model-question-f.md @@ -16,13 +16,12 @@ Every single thing on a webpage is a rectangular box. These boxes can have other } ``` - -# --question-- - -## --assignment-- +# --assignment-- Add a border to every element on the page and see how the boxes are laid out. +# --question-- + ## --text-- What is the fundamental concept in CSS that helps you understand the structure of elements as rectangular boxes? diff --git a/curriculum/challenges/german/16-the-odin-project/top-the-box-model/the-box-model-question-g.md b/curriculum/challenges/german/16-the-odin-project/top-the-box-model/the-box-model-question-g.md index b8c981a7aa9..fdd4840cfa0 100644 --- a/curriculum/challenges/german/16-the-odin-project/top-the-box-model/the-box-model-question-g.md +++ b/curriculum/challenges/german/16-the-odin-project/top-the-box-model/the-box-model-question-g.md @@ -20,12 +20,12 @@ Be sure to study the diagrams carefully. ![the box model](https://cdn.statically.io/gh/TheOdinProject/curriculum/main/foundations/html_css/css-foundations/the-box-model/imgs/box-model.png) -# --question-- - -## --assignment-- +# --assignment-- Add a border to every element on the page and see how the boxes are laid out. +# --question-- + ## --text-- From inside to outside, what is the order of box-model properties? diff --git a/curriculum/challenges/german/16-the-odin-project/top-working-with-text/working-with-text-question-a.md b/curriculum/challenges/german/16-the-odin-project/top-working-with-text/working-with-text-question-a.md index 8698b62aca8..33176924828 100644 --- a/curriculum/challenges/german/16-the-odin-project/top-working-with-text/working-with-text-question-a.md +++ b/curriculum/challenges/german/16-the-odin-project/top-working-with-text/working-with-text-question-a.md @@ -32,12 +32,12 @@ Changing our example from before to use paragraph elements fixes the issue: -# --question-- - -## --assignment-- +# --assignment-- Watch and follow along to Kevin Powell’s HTML Paragraph and Headings Video above. +# --question-- + ## --text-- How do you create a paragraph in HTML? diff --git a/curriculum/challenges/german/16-the-odin-project/top-working-with-text/working-with-text-question-c.md b/curriculum/challenges/german/16-the-odin-project/top-working-with-text/working-with-text-question-c.md index 6ccf0e06658..da6e3dd4511 100644 --- a/curriculum/challenges/german/16-the-odin-project/top-working-with-text/working-with-text-question-c.md +++ b/curriculum/challenges/german/16-the-odin-project/top-working-with-text/working-with-text-question-c.md @@ -20,12 +20,12 @@ But you will probably find yourself using the `strong` element much more in comb Sometimes you will want to make text bold without giving it an important meaning. You’ll learn how to do that in the CSS lessons later in the curriculum. -# --question-- - -## --assignment-- +# --assignment-- Watch Kevin Powell’s HTML Bold and Italic Text Video above. +# --question-- + ## --text-- What element should you use to make text bold and important? diff --git a/curriculum/challenges/german/16-the-odin-project/top-working-with-text/working-with-text-question-g.md b/curriculum/challenges/german/16-the-odin-project/top-working-with-text/working-with-text-question-g.md index 5f5d141fa46..23881db5be0 100644 --- a/curriculum/challenges/german/16-the-odin-project/top-working-with-text/working-with-text-question-g.md +++ b/curriculum/challenges/german/16-the-odin-project/top-working-with-text/working-with-text-question-g.md @@ -21,12 +21,12 @@ Writing an HTML comment is simple: You just enclose the comment with ` ``` -# --question-- - -## --assignment-- +# --assignment-- To get some practice working with text in HTML, create a plain blog article page which uses different headings, uses paragraphs, and has some text in the paragraphs bolded and italicized. You can use [Lorem Ipsum](https://loremipsum.io) to generate dummy text, in place of real text as you build your sites. +# --question-- + ## --text-- How do you create HTML comments? diff --git a/curriculum/challenges/german/16-the-odin-project/top-working-with-text/working-with-text-question-h.md b/curriculum/challenges/german/16-the-odin-project/top-working-with-text/working-with-text-question-h.md index c20b4de097a..29feb0cf613 100644 --- a/curriculum/challenges/german/16-the-odin-project/top-working-with-text/working-with-text-question-h.md +++ b/curriculum/challenges/german/16-the-odin-project/top-working-with-text/working-with-text-question-h.md @@ -22,9 +22,7 @@ Ordered lists are created using the `
            ` element. Each individual item in them -# --question-- - -## --assignment-- +# --assignment-- Watch the first three minutes of Kevin Powell's video on Ordered and Unordered lists above. @@ -44,6 +42,8 @@ Make an unordered list of places you’d like to visit someday. Make an ordered list of your all time top 5 favorite video games or movies. +# --question-- + ## --text-- What HTML tag is used to create an unordered list? diff --git a/curriculum/challenges/german/17-college-algebra-with-python/learn-applications-of-linear-systems/word-problems.md b/curriculum/challenges/german/17-college-algebra-with-python/learn-applications-of-linear-systems/word-problems.md index 0a15305c01e..1b2711c96f6 100644 --- a/curriculum/challenges/german/17-college-algebra-with-python/learn-applications-of-linear-systems/word-problems.md +++ b/curriculum/challenges/german/17-college-algebra-with-python/learn-applications-of-linear-systems/word-problems.md @@ -16,9 +16,7 @@ This first video will look at key words that tell you what math operation to use \- Algebra and Trigonometry by Jay Abramson -# --question-- - -## --assignment-- +# --assignment-- Complete the problems on pages 63, 75, 85, and 118 from "Business Math, a Step-by-Step Handbook (2021)". @@ -26,6 +24,8 @@ Complete the problems on pages 63, 75, 85, and 118 from "Business Math, a Step-b Complete the problems on pages 304, 308, and 321 from "Algebra and Trigonometry". +# --question-- + ## --text-- Which of the following key words indicate subtraction? diff --git a/curriculum/challenges/german/17-college-algebra-with-python/learn-business-applications-of-college-algebra/demand-and-revenue.md b/curriculum/challenges/german/17-college-algebra-with-python/learn-business-applications-of-college-algebra/demand-and-revenue.md index ca2ea6f7796..0a70a02cf1d 100644 --- a/curriculum/challenges/german/17-college-algebra-with-python/learn-business-applications-of-college-algebra/demand-and-revenue.md +++ b/curriculum/challenges/german/17-college-algebra-with-python/learn-business-applications-of-college-algebra/demand-and-revenue.md @@ -16,12 +16,12 @@ Here is the Business Math, a Step-by-Step Handbook (2021) by Jean-Paul Oliver -# --question-- - -## --assignment-- +# --assignment-- Complete the problems on pages 155 and 163 from "Business Math, a Step-by-Step Handbook (2021)". +# --question-- + ## --text-- Which of the following business equations is not correct? diff --git a/curriculum/challenges/german/17-college-algebra-with-python/learn-fractions-and-decimals/converting-fractions-and-decimals.md b/curriculum/challenges/german/17-college-algebra-with-python/learn-fractions-and-decimals/converting-fractions-and-decimals.md index 7386db1e3a1..5224ac7cf0a 100644 --- a/curriculum/challenges/german/17-college-algebra-with-python/learn-fractions-and-decimals/converting-fractions-and-decimals.md +++ b/curriculum/challenges/german/17-college-algebra-with-python/learn-fractions-and-decimals/converting-fractions-and-decimals.md @@ -12,12 +12,12 @@ The first video will show you how to convert between fractions, decimals, and pe Here is the Colab notebook used in the video. Use this code as a model, and write your own code to convert fractions and decimals. -# --question-- - -## --assignment-- +# --assignment-- Add the code to convert fractions and decimals to your algebra Colab notebook. +# --question-- + ## --text-- Which of the following correctly represents "three hundredths" as a decimal? diff --git a/curriculum/challenges/german/17-college-algebra-with-python/learn-fractions-and-decimals/fractions-and-decimals-extra.md b/curriculum/challenges/german/17-college-algebra-with-python/learn-fractions-and-decimals/fractions-and-decimals-extra.md index e1ac138f79e..7c367228f0c 100644 --- a/curriculum/challenges/german/17-college-algebra-with-python/learn-fractions-and-decimals/fractions-and-decimals-extra.md +++ b/curriculum/challenges/german/17-college-algebra-with-python/learn-fractions-and-decimals/fractions-and-decimals-extra.md @@ -12,9 +12,7 @@ The following video will show you one way to set up your Google Colaboratory not Here is the Colab notebook used in this video so you can use it as a model. -# --question-- - -## --assignment-- +# --assignment-- Add the code to factor and solve for a variable to your algebra Colab notebook. @@ -22,6 +20,8 @@ Add the code to factor and solve for a variable to your algebra Colab notebook. Run the code in the following notebook to get practice converting fractions and decimals. As a bonus, look at the code used to generate the practice problems. +# --question-- + ## --text-- Which of the following languages can you not use in Google Colaboratory? diff --git a/curriculum/challenges/german/17-college-algebra-with-python/learn-functions-and-graphing/functions-and-graphing-extra.md b/curriculum/challenges/german/17-college-algebra-with-python/learn-functions-and-graphing/functions-and-graphing-extra.md index d5516d90fb2..4cc6201ae95 100644 --- a/curriculum/challenges/german/17-college-algebra-with-python/learn-functions-and-graphing/functions-and-graphing-extra.md +++ b/curriculum/challenges/german/17-college-algebra-with-python/learn-functions-and-graphing/functions-and-graphing-extra.md @@ -12,12 +12,12 @@ This next video will show you the connection between functions and graphing. Not Here is the Colab notebook to go with this video. -# --question-- - -## --assignment-- +# --assignment-- Add code to your algebra Colab notebook for functions and graphing. +# --question-- + ## --text-- What Python library would you import to create arrays that you can graph? diff --git a/curriculum/challenges/german/17-college-algebra-with-python/learn-functions-and-graphing/functions.md b/curriculum/challenges/german/17-college-algebra-with-python/learn-functions-and-graphing/functions.md index a5f13dca979..d511fecf032 100644 --- a/curriculum/challenges/german/17-college-algebra-with-python/learn-functions-and-graphing/functions.md +++ b/curriculum/challenges/german/17-college-algebra-with-python/learn-functions-and-graphing/functions.md @@ -12,12 +12,12 @@ This first video will show you what it means to be a function, and then it will Here is the Colab notebook used in this and the next videos. -# --question-- - -## --assignment-- +# --assignment-- Add code to your algebra Colab notebook that creates Python functions for decimal-to-fraction conversions +# --question-- + ## --text-- After defining a function in Python, indent each line of the function how many spaces? diff --git a/curriculum/challenges/german/17-college-algebra-with-python/learn-functions-and-graphing/graphing.md b/curriculum/challenges/german/17-college-algebra-with-python/learn-functions-and-graphing/graphing.md index ac237fcbcb2..3c170849ede 100644 --- a/curriculum/challenges/german/17-college-algebra-with-python/learn-functions-and-graphing/graphing.md +++ b/curriculum/challenges/german/17-college-algebra-with-python/learn-functions-and-graphing/graphing.md @@ -12,9 +12,7 @@ This next video will show you the connection between functions and graphing. Not Here is the Colab notebook to go with the last two videos so you can start making your own graphs. -# --question-- - -## --assignment-- +# --assignment-- Add code to your algebra Colab notebook for functions and graphing. @@ -22,6 +20,8 @@ Add code to your algebra Colab notebook for functions and graphing. Run the following notebook to see more ways to create graphs using algebra and Python. +# --question-- + ## --text-- Which of the following would put a blue line on a graph? diff --git a/curriculum/challenges/german/17-college-algebra-with-python/learn-how-to-graph-systems-of-equations/graphing-systems.md b/curriculum/challenges/german/17-college-algebra-with-python/learn-how-to-graph-systems-of-equations/graphing-systems.md index d9dca33678b..7224ab905a2 100644 --- a/curriculum/challenges/german/17-college-algebra-with-python/learn-how-to-graph-systems-of-equations/graphing-systems.md +++ b/curriculum/challenges/german/17-college-algebra-with-python/learn-how-to-graph-systems-of-equations/graphing-systems.md @@ -12,12 +12,12 @@ This first video will show you how to graph systems of equations with written ma Here is the Colab notebook used in this video. -# --question-- - -## --assignment-- +# --assignment-- Add code from the video to the algebra notebook you are building, and test it with different functions. +# --question-- + ## --text-- The numpy `linspace()` function takes three arguments to create an array. Which of the following arguments does it not take? diff --git a/curriculum/challenges/german/17-college-algebra-with-python/learn-how-to-solve-for-x/how-to-solve-for-x-extra.md b/curriculum/challenges/german/17-college-algebra-with-python/learn-how-to-solve-for-x/how-to-solve-for-x-extra.md index 5d9ca07f933..18484302ead 100644 --- a/curriculum/challenges/german/17-college-algebra-with-python/learn-how-to-solve-for-x/how-to-solve-for-x-extra.md +++ b/curriculum/challenges/german/17-college-algebra-with-python/learn-how-to-solve-for-x/how-to-solve-for-x-extra.md @@ -12,9 +12,7 @@ This video will go deeper, with more examples of how to use SymPy solve. It will Here is the Colab notebook to go along with this video. Use it to add more to the algebra Colab notebook that you are building. -# --question-- - -## --assignment-- +# --assignment-- Add the code for more ways to solve for x from the video to your algebra Colab notebook. @@ -22,6 +20,8 @@ Add the code for more ways to solve for x from the video to your algebra Colab n Open the following Colab notebook, run the cell, and practice solving one and two-step algebra problems. As a bonus, look at the code that generates the practice problems. +# --question-- + ## --text-- If you import sympy and define x as a variable, what would be the output from the following code? diff --git a/curriculum/challenges/german/17-college-algebra-with-python/learn-how-to-solve-for-x/solving-for-x.md b/curriculum/challenges/german/17-college-algebra-with-python/learn-how-to-solve-for-x/solving-for-x.md index cf99c6cfbd1..359af3680b5 100644 --- a/curriculum/challenges/german/17-college-algebra-with-python/learn-how-to-solve-for-x/solving-for-x.md +++ b/curriculum/challenges/german/17-college-algebra-with-python/learn-how-to-solve-for-x/solving-for-x.md @@ -12,12 +12,12 @@ This first video will show you the essence of algebra and then how Python code d Here is the Colab notebook to go along with this video. Add the code from the video to your algebra Colab notebook to see how to solve for X using Python. Then change the code if you want, test it, and compare it to paper-and-pencil solving. Remember the equation input needs to be in Python syntax. -# --question-- - -## --assignment-- +# --assignment-- Add the code to solve for x from the video to your algebra Colab notebook. +# --question-- + ## --text-- In Python, what is the library you import to solve algebra problems with variables? diff --git a/curriculum/challenges/german/17-college-algebra-with-python/learn-how-to-solve-systems-of-equations/solving-systems.md b/curriculum/challenges/german/17-college-algebra-with-python/learn-how-to-solve-systems-of-equations/solving-systems.md index 08847d0f8a6..fff4fb886a7 100644 --- a/curriculum/challenges/german/17-college-algebra-with-python/learn-how-to-solve-systems-of-equations/solving-systems.md +++ b/curriculum/challenges/german/17-college-algebra-with-python/learn-how-to-solve-systems-of-equations/solving-systems.md @@ -12,12 +12,12 @@ The first video will show you the math behind solving a system of two equations Here is the Colab notebook used in this video. -# --question-- - -## --assignment-- +# --assignment-- Add code to your notebook to solve and graph systems of equations +# --question-- + ## --text-- Which of the following can SymPy do that matplotlib can't do? diff --git a/curriculum/challenges/german/17-college-algebra-with-python/learn-linear-functions/linear-equations.md b/curriculum/challenges/german/17-college-algebra-with-python/learn-linear-functions/linear-equations.md index c513b57f2eb..e6b1e211b81 100644 --- a/curriculum/challenges/german/17-college-algebra-with-python/learn-linear-functions/linear-equations.md +++ b/curriculum/challenges/german/17-college-algebra-with-python/learn-linear-functions/linear-equations.md @@ -12,12 +12,12 @@ This video will show you the math behind finding the y-intercept in a linear fun Here is the Colab notebook to go with the last two videos, so you can see the formulas. -# --question-- - -## --assignment-- +# --assignment-- Add code to your algebra Colab notebook to graph a function from points or from equation input. +# --question-- + ## --text-- If you know the slope ("m") and you have one (x,y) coordinate point, which of the following equations could you use to find "b", representing the y-intercept in Python? diff --git a/curriculum/challenges/german/17-college-algebra-with-python/learn-ratios-and-proportions/introduction-to-college-algebra-with-python.md b/curriculum/challenges/german/17-college-algebra-with-python/learn-ratios-and-proportions/introduction-to-college-algebra-with-python.md index 834b288fe92..66e0414871b 100644 --- a/curriculum/challenges/german/17-college-algebra-with-python/learn-ratios-and-proportions/introduction-to-college-algebra-with-python.md +++ b/curriculum/challenges/german/17-college-algebra-with-python/learn-ratios-and-proportions/introduction-to-college-algebra-with-python.md @@ -16,12 +16,12 @@ This first video includes an introduction to the course, how it will work, and h \- Algebra and Trigonometry by Jay Abramson -# --question-- - -## --assignment-- +# --assignment-- Create an algebra Colab notebook on your google drive so you can follow along with the videos. +# --question-- + ## --text-- When adding text in Google Colab, what symbol would you use to create a heading that will appear in the table of contents? diff --git a/curriculum/challenges/german/17-college-algebra-with-python/learn-ratios-and-proportions/ratios-and-proportions-extra.md b/curriculum/challenges/german/17-college-algebra-with-python/learn-ratios-and-proportions/ratios-and-proportions-extra.md index c94c30816bd..ee59111d1a1 100644 --- a/curriculum/challenges/german/17-college-algebra-with-python/learn-ratios-and-proportions/ratios-and-proportions-extra.md +++ b/curriculum/challenges/german/17-college-algebra-with-python/learn-ratios-and-proportions/ratios-and-proportions-extra.md @@ -10,12 +10,12 @@ dashedName: ratios-and-proportions-extra The last video in this section will show you how to use proportions in other applications, such as currency exchange rates and unit conversion. It will also show you more about setting up your notebook and working through the practice assignment. -# --question-- - -## --assignment-- +# --assignment-- Open the following Colab notebook, run the cell, and practice solving one-step algebra problems. As a bonus, look at the code that generates the practice problems. +# --question-- + ## --text-- What is another way to write 0.9999... (repeating 9)? diff --git a/curriculum/challenges/german/17-college-algebra-with-python/learn-ratios-and-proportions/solving-proportions.md b/curriculum/challenges/german/17-college-algebra-with-python/learn-ratios-and-proportions/solving-proportions.md index 8371ec1655d..14a060f564e 100644 --- a/curriculum/challenges/german/17-college-algebra-with-python/learn-ratios-and-proportions/solving-proportions.md +++ b/curriculum/challenges/german/17-college-algebra-with-python/learn-ratios-and-proportions/solving-proportions.md @@ -12,12 +12,12 @@ Now we get to the math content. This video will show you how to set up and solve Here is the Colab notebook to go along with this video. If you have not done so yet, set up your algebra Colab notebook from the last video. Then, add the code from this video to it. -# --question-- - -## --assignment-- +# --assignment-- Add the code from the video to the algebra Colab notebook you created in the first step. +# --question-- + ## --text-- In solving a proportion, if one numerator is zero, does the other numerator have to be zero for the statement to be true? diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md index 04d809176cc..d5de7121c15 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-do-while/ and complete all the tasks for the "Add Looping Logic to Your Code Using the do-while and while Statements in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Add Looping Logic to Your Code Using the `do`-`while` and `while` Statements in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- A developer needs to iterate through an array of items to find one that matches a certain criteria. Which is the best iteration statement for this purpose? diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md index d0087ce5be8..ee50cb1473b 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-switch-case/ and complete all the tasks for the "Branch the Flow of Code Using the switch-case Construct in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Branch the Flow of Code Using the `switch`-`case` Construct in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What is the purpose of the `break` keyword? diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md index b34b20dcdd7..a837a683f26 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/challenge-project-develop-branching-looping-structures-c-sharp/ and complete all the tasks for the "Challenge Project - Develop Branching and Looping Structures in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Develop Branching and Looping Structures in C# challenge project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- A developer needs to create an iteration statement. Under what condition is a `while` statement a better choice than a `do` statement? diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md index bf5a4084719..68fae6e49b2 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-code-blocks/ and complete all the tasks for the "Control Variable Scope and Logic Using Code Blocks in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Control Variable Scope and Logic Using Code Blocks in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following statements is true about showing/removing the curly braces for code blocks associated with an `if` statement? diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md index 3f503f69e32..f1d60edd59a 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-evaluate-boolean-expressions/ and complete all the tasks for the "Evaluate Boolean Expressions to Make Decisions in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Evaluate Boolean Expressions to Make Decisions in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following lines of code is a valid use of the conditional operator? diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md index f23006f2793..a678783a004 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-develop-conditional-branching-looping/ and complete all the tasks for the "Guided Project - Develop Conditional Branching and Looping Structures in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Develop Conditional Branching and Looping Structures in C# guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- When is it appropriate to use a `switch-case` construct rather than a `if-elseif-else` construct? diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md index 29f7fbe4ca9..d85cd9e79c5 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-for/ and complete all the tasks for the "Iterate Through a Code Block Using the for Statement in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Iterate Through a Code Block Using the `for` Statement in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following `for` statements is correct? diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md index 597a1daa754..b4c34681581 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-if-elseif-else/ and complete all the tasks for the "Add Decision Logic to Your Code Using if, else, and else if statements in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Add Decision Logic to Your Code Using `if`, `else`, and `else if` Statements in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the choices below is not a valid operator in C#? diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md index aeeed01382f..64ee30462ef 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-call-methods/ and complete all the tasks for the "Call Methods From the .NET Class Library Using C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Call Methods from the .NET Class Library Using C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What is an object? diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md index 4124a3e48d0..c19935da753 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/challenge-project-arrays-iteration-selection/ and complete all the tasks for the "Challenge Project - Develop foreach and if-elseif-else Structures to Process Array Data in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Develop `foreach` and `if`-`elseif`-`else` Structures to Process Array Data in C# challenge project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- A developer is working with two other developers to update a collection of applications. The developers will use code comments during the update process. Which of the following describes an appropriate use of code comments? diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md index ff048d90565..221d8229223 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-readable-code/ and complete all the tasks for the "Create Readable Code with Conventions, Whitespace, and Comments in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Create Readable Code with Conventions, Whitespace, and Comments in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following is a bad reason to use a code comment? diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md index 94f87df9df4..af1892b527b 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-arrays-iteration-selection/ and complete all the tasks for the "Guided Project - Develop foreach and if-elseif-else Structures to Process Array Data in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Develop `foreach` and `if`-`elseif`-`else` Structures to Process Array Data in C# guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- A developer writes an application that uses a `foreach` loop to iterate through an array containing 20 elements. After the application is complete, the developer learns that the array must be updated to include 40 elements. The application needs to examine all 40 array elements. Which of the following items describes the required code update? diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md index 293d196cf6f..772087d66a9 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/install-configure-visual-studio-code/ and complete all the tasks for the "Install and Configure Visual Studio Code" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Install and Configure Visual Studio Code module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following choices provides the best description of an Integrated Development Environment (IDE)? diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md index 2e1bc53cae6..33713c19393 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-arrays/ and complete all the tasks for the "Store and Iterate Through Sequences of Data Using Arrays and the foreach Statement in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Store and Iterate Through Sequences of Data Using Arrays and the `foreach` Statement in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following foreach statements is syntactically correct? diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md index 1f9c05bfa10..18794d3b5af 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/challenge-project-create-mini-game/ and complete all the tasks for the "Challenge Project - Create a Mini-Game" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Create a Mini-Game challenge project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- A developer wants to create a method that returns a value in an array. Which of the following options would be a good choice for a method signature? diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md index f30799e881f..01aaf75c313 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/create-c-sharp-methods-return-values/ and complete all the tasks for the "Create C# Methods that Return Values" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Create C# Methods that Return Values module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following options correctly returns a `string` value? diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md index c576ee4c155..44f48d4b8c9 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/create-c-sharp-methods-parameters/ and complete all the tasks for the "Create C# Methods with Parameters" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Create C# Methods with Parameters module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Given the method signature, diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md index aea8d011c19..15877a13f97 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-visit-petting-zoo/ and complete all the tasks for the "Guided Project - Plan a Petting Zoo Visit" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Plan a Petting Zoo Visit guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What is the purpose of defining an optional parameter in a method? diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md index c7bccb05699..7e6313f4a57 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/write-first-c-sharp-method/ and complete all the tasks for the "Write Your First C# Method" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Write Your First C# Method module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following correctly declares a method? diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md index 52415dc17c0..88425acb0d1 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/challenge-project-debug-c-sharp-console-application/ and complete all the tasks for the "Challenge Project - Debug a C# Console Application Using Visual Studio Code" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Debug a C# Console Application Using Visual Studio Code challenge project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following options can be used set a breakpoint in Visual Studio Code? diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md index 3a43bedeeff..82396ebc624 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/create-throw-exceptions-c-sharp/ and complete all the tasks for the "Create and Throw Exceptions in C# Console Applications" module. This is **required** earn to the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Create and Throw Exceptions in C# Console Applications module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- When should a method throw an exception? diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md index c96c6dbf3d0..33d1914183f 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-debug-handle-exceptions-c-sharp-console-application/ and complete all the tasks for the "Guided Project - Debug and Handle Exceptions in a C# Console Application Using Visual Studio Code" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Debug and Handle Exceptions in a C# Console Application Using Visual Studio Code guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- When is an `ArgumentOutOfRangeException` exception thrown? diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md index a437297321d..d77786e00f0 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/implement-exception-handling-c-sharp/ and complete all the tasks for the "Implement Exception Handling in C# Console Applications" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Implement Exception Handling in C# Console Applications module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- When is an `ArrayTypeMismatchException` exception thrown? diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md index cf989a73210..eaf0a57a505 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/implement-visual-studio-code-debugging-tools/ and complete all the tasks for the "Implement the Visual Studio Code Debugging Tools for C#" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Implement the Visual Studio Code Debugging Tools for C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which section of the RUN AND DEBUG view is used to track the current point of execution within the running application? diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md index fb54c916c41..66529f25875 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/review-principles-code-debugging-exception-handling-c-sharp/ and complete all the tasks for the "Review the Principles of Code Debugging and Exception Handling" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Review the Principles of Code Debugging and Exception Handling module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What is the relationship between the type of exception and the information it contains? diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md index 57357fa507f..3283ae458e5 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/challenge-project-work-variable-data-c-sharp/ and complete all the tasks for the "Challenge Project - Work with Variable Data in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Work with Variable Data in C# challenge project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- To sort a string array, why is it important to use the `String.Trim()` method on each array element before sorting? diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md index cfc6e5f6417..90ad0c24ddc 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-choose-data-type/ and complete all the tasks for the "Choose the Correct Data Type in Your C# Code" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Choose the Correct Data Type in Your C# Code module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- A piece of code must store whole numeric values between negative and positive `1,000,000`. Which data type should you choose? diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md index 7e3cccdbf6c..2f81848ec0c 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-convert-cast/ and complete all the tasks for the "Convert Data Types Using Casting and Conversion Techniques in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Convert Data Types Using Casting and Conversion Techniques in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What type of action is being performed when changing a `float` into an `int`? diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md index 25db424abb8..4f13971f084 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-format-strings/ and complete all the tasks for the "Format Alphanumeric Data for Presentation in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Format Alphanumeric Data for Presentation in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- For the C# code `Console.WriteLine("C110".PadLeft(6, '0'));`, which is the expected output? diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md index 41a67d95996..d70b33e0034 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-work-variable-data-c-sharp/ and complete all the tasks for the "Guided Project - Work with Variable Data in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Work with Variable Data in C# guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- For the code `decimal.TryParse(numberString, out myConvert))` when the type of `numberString` is a String. diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md index 7a75db01628..f3193f3dfc2 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-modify-content/ and complete all the tasks for the "Modify the Content of Strings Using Built-In String Data Type Methods in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Modify the Content of Strings Using Built-In String Data Type Methods in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which method finds the next index of either the `-` char, the `=` char, or the `_` char? diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md index f51f67bd1d7..14353de4a63 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-arrays-operations/ and complete all the tasks for the "Perform Operations on Arrays Using Helper Methods in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Perform Operations on Arrays Using Helper Methods in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which method changes the order of items in an `string` array? diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md index 7a7836123bb..131c73af39c 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-calculate-print-student-grades/ and complete all the tasks for the "Guided Project - Calculate and Print Student Grades" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Calculate and Print Student Grades guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What is wrong with the following code? diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md index f4d5d576477..6a5491e8f12 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-calculate-final-gpa/ and complete all the tasks for the "Guided Project - Calculate Final GPA" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Calculate Final GPA guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Suppose `decimal gradePointAverage = 3.99872831m;`. diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md index 09ea0a4fd28..71e056d641f 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-basic-operations/ and complete all the tasks for the "Perform Basic Operations on Numbers in C#" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Perform Basic Operations on Numbers in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What is the value of the following result? diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md index 8fe6df7466b..6a00bd662df 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-basic-formatting/ and complete all the tasks for the "Perform Basic String Formatting in C#" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Perform Basic String Formatting in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following lines of code correctly uses string interpolation assuming that the variable `value` is a string? diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md index 8c1bb0619d3..f229f0d8387 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-literals-variables/ and complete all the tasks for the "Store and Retrieve Data Using Literal and Variable Values in C#" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Store and Retrieve Data Using Literal and Variable Values in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following lines of code creates a variable correctly? diff --git a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md index c2b06ef0c32..e9da470c2a1 100644 --- a/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md +++ b/curriculum/challenges/german/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-write-first/ and complete all the tasks in the "Write Your First C# Code" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Write Your First C# Code module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What is the difference between `Console.Write` and `Console.WriteLine`? diff --git a/curriculum/challenges/italian/16-the-odin-project/top-learn-html-foundations/html-foundations-question-a.md b/curriculum/challenges/italian/16-the-odin-project/top-learn-html-foundations/html-foundations-question-a.md index 26dcaf81d51..138c596a766 100644 --- a/curriculum/challenges/italian/16-the-odin-project/top-learn-html-foundations/html-foundations-question-a.md +++ b/curriculum/challenges/italian/16-the-odin-project/top-learn-html-foundations/html-foundations-question-a.md @@ -26,12 +26,12 @@ HTML has a vast list of predefined tags that you can use to create all kinds of Using the correct elements for content is called semantic HTML. You will explore this in much more depth later on in the curriculum. -# --question-- - -## --assignment-- +# --assignment-- Watch Kevin Powell’s [Introduction to HTML video](https://www.youtube.com/watch?v=LGQuIIv2RVA&list=PL4-IK0AVhVjM0xE0K2uZRvsM7LkIhsPT-) +# --question-- + ## --text-- What are HTML tags? diff --git a/curriculum/challenges/italian/16-the-odin-project/top-learn-html-foundations/html-foundations-question-e.md b/curriculum/challenges/italian/16-the-odin-project/top-learn-html-foundations/html-foundations-question-e.md index 58e4fab1b96..0a6e5658f3d 100644 --- a/curriculum/challenges/italian/16-the-odin-project/top-learn-html-foundations/html-foundations-question-e.md +++ b/curriculum/challenges/italian/16-the-odin-project/top-learn-html-foundations/html-foundations-question-e.md @@ -11,12 +11,12 @@ HTML and CSS are two languages that work together to create everything that you Many helpful resources out there keep referring to HTML and CSS as programming languages, but if you want to get technical, labeling them as such is not quite accurate. This is because they are only concerned with presenting information. They are not used to program logic. JavaScript, which you will learn in the next section, is a programming language because it’s used to make webpages do things. Yet, there is quite a lot you can do with just HTML and CSS, and you will definitely need them both. Throughout our curriculum, the following lessons focus on giving you the tools you need to succeed once you reach JavaScript content. -# --question-- - -## --assignment-- +# --assignment-- Read the HTML vs CSS vs JavaScript article. It is a quick overview of the relationships between HTML, CSS, and JavaScript. +# --question-- + ## --text-- Which of the following statements is true? @@ -37,5 +37,3 @@ HTML and CSS are used to add style to a webpage, and JavaScript is used to creat ## --video-solution-- 2 - - diff --git a/curriculum/challenges/italian/16-the-odin-project/top-learn-html-foundations/html-foundations-question-g.md b/curriculum/challenges/italian/16-the-odin-project/top-learn-html-foundations/html-foundations-question-g.md index 16299d58648..29cc79ceab3 100644 --- a/curriculum/challenges/italian/16-the-odin-project/top-learn-html-foundations/html-foundations-question-g.md +++ b/curriculum/challenges/italian/16-the-odin-project/top-learn-html-foundations/html-foundations-question-g.md @@ -12,9 +12,7 @@ The final element needed to complete the HTML boilerplate is the `` elemen To complete the boilerplate, add a `body` element to the `index.html` file. The `body` element also goes within the `html` element and is always below the `head` element, like so: -# --question-- - -## --assignment-- +# --assignment-- Watch and follow along to Kevin Powell’s brilliant Building your first web page video above. @@ -26,6 +24,8 @@ Build some muscle memory by deleting the contents of the `index.html` file and t Run your boilerplate through this [HTML validator](https://www.freeformatter.com/html-validator.html). Validators ensure your markup is correct and are an excellent learning tool, as they provide feedback on syntax errors you may be making often and aren’t aware of, such as missing closing tags and extra spaces in your HTML. +# --question-- + ## --text-- What is the purpose of the `body` element? diff --git a/curriculum/challenges/italian/16-the-odin-project/top-links-and-images/links-and-images-question-a.md b/curriculum/challenges/italian/16-the-odin-project/top-links-and-images/links-and-images-question-a.md index b4d237448f3..09759d1d3e7 100644 --- a/curriculum/challenges/italian/16-the-odin-project/top-links-and-images/links-and-images-question-a.md +++ b/curriculum/challenges/italian/16-the-odin-project/top-links-and-images/links-and-images-question-a.md @@ -39,12 +39,12 @@ By default, any text wrapped with an anchor tag without a `href` attribute will It’s worth noting you can use anchor tags to link to any kind of resource on the internet, not just other HTML documents. You can link to videos, pdf files, images, and so on, but for the most part, you will be linking to other HTML documents. -# --question-- - -## --assignment-- +# --assignment-- Watch Kevin Powell’s HTML Links video above. +# --question-- + ## --text-- What HTML tag is used to create a link? diff --git a/curriculum/challenges/italian/16-the-odin-project/top-links-and-images/links-and-images-question-d.md b/curriculum/challenges/italian/16-the-odin-project/top-links-and-images/links-and-images-question-d.md index 37eebffbabf..19e8da36314 100644 --- a/curriculum/challenges/italian/16-the-odin-project/top-links-and-images/links-and-images-question-d.md +++ b/curriculum/challenges/italian/16-the-odin-project/top-links-and-images/links-and-images-question-d.md @@ -85,12 +85,12 @@ In many cases, this will work just fine; however, you can still run into unexpec ``` -# --question-- - -## --assignment-- +# --assignment-- Watch Kevin Powell’s HTML File Structure video above. +# --question-- + ## --text-- What is the difference between an absolute and a relative link? diff --git a/curriculum/challenges/italian/16-the-odin-project/top-links-and-images/links-and-images-question-e.md b/curriculum/challenges/italian/16-the-odin-project/top-links-and-images/links-and-images-question-e.md index ae008078088..8ac3815d177 100644 --- a/curriculum/challenges/italian/16-the-odin-project/top-links-and-images/links-and-images-question-e.md +++ b/curriculum/challenges/italian/16-the-odin-project/top-links-and-images/links-and-images-question-e.md @@ -71,12 +71,12 @@ The `alt` attribute is used to describe an image. It will be used in place of th This is how the The Odin Project logo example you used earlier looks with an `alt` attribute included: -# --question-- - -## --assignment-- +# --assignment-- Watch Kevin Powell’s HTML Images Video above. +# --question-- + ## --text-- Which tag is used to display an image? diff --git a/curriculum/challenges/italian/16-the-odin-project/top-links-and-images/links-and-images-question-h.md b/curriculum/challenges/italian/16-the-odin-project/top-links-and-images/links-and-images-question-h.md index 71157081ae7..f7ed108d84e 100644 --- a/curriculum/challenges/italian/16-the-odin-project/top-links-and-images/links-and-images-question-h.md +++ b/curriculum/challenges/italian/16-the-odin-project/top-links-and-images/links-and-images-question-h.md @@ -70,12 +70,12 @@ The `alt` attribute is used to describe an image. It will be used in place of th This is how the The Odin Project logo example you used earlier looks with an alt attribute included: -# --question-- - -## --assignment-- +# --assignment-- Read about the four main image formats that can be used on the web. +# --question-- + ## --text-- What are the four main image formats that you can use for images on the web? diff --git a/curriculum/challenges/italian/16-the-odin-project/top-the-box-model/the-box-model-question-a.md b/curriculum/challenges/italian/16-the-odin-project/top-the-box-model/the-box-model-question-a.md index 81cc2d54518..e2882cdb454 100644 --- a/curriculum/challenges/italian/16-the-odin-project/top-the-box-model/the-box-model-question-a.md +++ b/curriculum/challenges/italian/16-the-odin-project/top-the-box-model/the-box-model-question-a.md @@ -13,12 +13,12 @@ To open up the inspector, you can right-click on any element of a webpage and cl Don’t get overwhelmed with all the tools you’re now seeing! For this lesson, we want to focus on the Elements and Styles panes. -# --question-- - -## --assignment-- +# --assignment-- Play around with Chrome Dev Tools and see if you can answer the following question. +# --question-- + ## --text-- Which panes should you focus on in the Chrome Dev Tools for inspecting and debugging HTML and CSS? diff --git a/curriculum/challenges/italian/16-the-odin-project/top-the-box-model/the-box-model-question-c.md b/curriculum/challenges/italian/16-the-odin-project/top-the-box-model/the-box-model-question-c.md index 84cee19aea0..25a32e0f581 100644 --- a/curriculum/challenges/italian/16-the-odin-project/top-the-box-model/the-box-model-question-c.md +++ b/curriculum/challenges/italian/16-the-odin-project/top-the-box-model/the-box-model-question-c.md @@ -14,12 +14,12 @@ When an element is selected, the Styles tab will show all the currently applied ![Overwritten style](https://cdn.statically.io/gh/TheOdinProject/curriculum/f8fd38fc62578d8e8368f5303126215a492847f0/foundations/html_css/inspecting-html-and-css/imgs/03.png) -# --question-- - -## --assignment-- +# --assignment-- Play around with Chrome Dev Tools and see if you can answer the following question. +# --question-- + ## --text-- Which feature in the Elements pane allows you to select any element on a webpage by hovering over it? diff --git a/curriculum/challenges/italian/16-the-odin-project/top-the-box-model/the-box-model-question-d.md b/curriculum/challenges/italian/16-the-odin-project/top-the-box-model/the-box-model-question-d.md index 4d882631471..a4d810760a5 100644 --- a/curriculum/challenges/italian/16-the-odin-project/top-the-box-model/the-box-model-question-d.md +++ b/curriculum/challenges/italian/16-the-odin-project/top-the-box-model/the-box-model-question-d.md @@ -14,13 +14,12 @@ When an element is selected, the Styles tab will show all the currently applied ![Overwritten style](https://cdn.statically.io/gh/TheOdinProject/curriculum/f8fd38fc62578d8e8368f5303126215a492847f0/foundations/html_css/inspecting-html-and-css/imgs/03.png) - -# --question-- - -## --assignment-- +# --assignment-- Play around with Chrome Dev Tools and see if you can answer the following question. +# --question-- + ## --text-- In the Styles pane, what information can you view about an element when it is selected? diff --git a/curriculum/challenges/italian/16-the-odin-project/top-the-box-model/the-box-model-question-f.md b/curriculum/challenges/italian/16-the-odin-project/top-the-box-model/the-box-model-question-f.md index a91d049aee3..96e12157b13 100644 --- a/curriculum/challenges/italian/16-the-odin-project/top-the-box-model/the-box-model-question-f.md +++ b/curriculum/challenges/italian/16-the-odin-project/top-the-box-model/the-box-model-question-f.md @@ -16,13 +16,12 @@ Every single thing on a webpage is a rectangular box. These boxes can have other } ``` - -# --question-- - -## --assignment-- +# --assignment-- Add a border to every element on the page and see how the boxes are laid out. +# --question-- + ## --text-- What is the fundamental concept in CSS that helps you understand the structure of elements as rectangular boxes? diff --git a/curriculum/challenges/italian/16-the-odin-project/top-the-box-model/the-box-model-question-g.md b/curriculum/challenges/italian/16-the-odin-project/top-the-box-model/the-box-model-question-g.md index b8c981a7aa9..fdd4840cfa0 100644 --- a/curriculum/challenges/italian/16-the-odin-project/top-the-box-model/the-box-model-question-g.md +++ b/curriculum/challenges/italian/16-the-odin-project/top-the-box-model/the-box-model-question-g.md @@ -20,12 +20,12 @@ Be sure to study the diagrams carefully. ![the box model](https://cdn.statically.io/gh/TheOdinProject/curriculum/main/foundations/html_css/css-foundations/the-box-model/imgs/box-model.png) -# --question-- - -## --assignment-- +# --assignment-- Add a border to every element on the page and see how the boxes are laid out. +# --question-- + ## --text-- From inside to outside, what is the order of box-model properties? diff --git a/curriculum/challenges/italian/16-the-odin-project/top-working-with-text/working-with-text-question-a.md b/curriculum/challenges/italian/16-the-odin-project/top-working-with-text/working-with-text-question-a.md index 8698b62aca8..33176924828 100644 --- a/curriculum/challenges/italian/16-the-odin-project/top-working-with-text/working-with-text-question-a.md +++ b/curriculum/challenges/italian/16-the-odin-project/top-working-with-text/working-with-text-question-a.md @@ -32,12 +32,12 @@ Changing our example from before to use paragraph elements fixes the issue: -# --question-- - -## --assignment-- +# --assignment-- Watch and follow along to Kevin Powell’s HTML Paragraph and Headings Video above. +# --question-- + ## --text-- How do you create a paragraph in HTML? diff --git a/curriculum/challenges/italian/16-the-odin-project/top-working-with-text/working-with-text-question-c.md b/curriculum/challenges/italian/16-the-odin-project/top-working-with-text/working-with-text-question-c.md index 6ccf0e06658..da6e3dd4511 100644 --- a/curriculum/challenges/italian/16-the-odin-project/top-working-with-text/working-with-text-question-c.md +++ b/curriculum/challenges/italian/16-the-odin-project/top-working-with-text/working-with-text-question-c.md @@ -20,12 +20,12 @@ But you will probably find yourself using the `strong` element much more in comb Sometimes you will want to make text bold without giving it an important meaning. You’ll learn how to do that in the CSS lessons later in the curriculum. -# --question-- - -## --assignment-- +# --assignment-- Watch Kevin Powell’s HTML Bold and Italic Text Video above. +# --question-- + ## --text-- What element should you use to make text bold and important? diff --git a/curriculum/challenges/italian/16-the-odin-project/top-working-with-text/working-with-text-question-g.md b/curriculum/challenges/italian/16-the-odin-project/top-working-with-text/working-with-text-question-g.md index 5f5d141fa46..23881db5be0 100644 --- a/curriculum/challenges/italian/16-the-odin-project/top-working-with-text/working-with-text-question-g.md +++ b/curriculum/challenges/italian/16-the-odin-project/top-working-with-text/working-with-text-question-g.md @@ -21,12 +21,12 @@ Writing an HTML comment is simple: You just enclose the comment with ` ``` -# --question-- - -## --assignment-- +# --assignment-- To get some practice working with text in HTML, create a plain blog article page which uses different headings, uses paragraphs, and has some text in the paragraphs bolded and italicized. You can use [Lorem Ipsum](https://loremipsum.io) to generate dummy text, in place of real text as you build your sites. +# --question-- + ## --text-- How do you create HTML comments? diff --git a/curriculum/challenges/italian/16-the-odin-project/top-working-with-text/working-with-text-question-h.md b/curriculum/challenges/italian/16-the-odin-project/top-working-with-text/working-with-text-question-h.md index c20b4de097a..29feb0cf613 100644 --- a/curriculum/challenges/italian/16-the-odin-project/top-working-with-text/working-with-text-question-h.md +++ b/curriculum/challenges/italian/16-the-odin-project/top-working-with-text/working-with-text-question-h.md @@ -22,9 +22,7 @@ Ordered lists are created using the `
              ` element. Each individual item in them -# --question-- - -## --assignment-- +# --assignment-- Watch the first three minutes of Kevin Powell's video on Ordered and Unordered lists above. @@ -44,6 +42,8 @@ Make an unordered list of places you’d like to visit someday. Make an ordered list of your all time top 5 favorite video games or movies. +# --question-- + ## --text-- What HTML tag is used to create an unordered list? diff --git a/curriculum/challenges/italian/17-college-algebra-with-python/learn-applications-of-linear-systems/word-problems.md b/curriculum/challenges/italian/17-college-algebra-with-python/learn-applications-of-linear-systems/word-problems.md index 1ef85ccf031..f5c03044017 100644 --- a/curriculum/challenges/italian/17-college-algebra-with-python/learn-applications-of-linear-systems/word-problems.md +++ b/curriculum/challenges/italian/17-college-algebra-with-python/learn-applications-of-linear-systems/word-problems.md @@ -16,9 +16,7 @@ Questo primo video tratterà le parole chiave che ti dicono quale operazione mat \- Algebra and Trigonometry di Jay Abramson -# --question-- - -## --assignment-- +# --assignment-- Completa i problemi alle pagine 63, 75, 85 e 118 da "Business Math, a Step-by-Step Handbook (2021)". @@ -26,6 +24,8 @@ Completa i problemi alle pagine 63, 75, 85 e 118 da "Business Math, a Step-by-St Completa i problemi alle pagine 304, 308 e 321 da "Algebra and Trigonometry". +# --question-- + ## --text-- Quali delle seguenti parole chiave indicano la sottrazione? diff --git a/curriculum/challenges/italian/17-college-algebra-with-python/learn-business-applications-of-college-algebra/demand-and-revenue.md b/curriculum/challenges/italian/17-college-algebra-with-python/learn-business-applications-of-college-algebra/demand-and-revenue.md index abe6fd9fded..a355f518838 100644 --- a/curriculum/challenges/italian/17-college-algebra-with-python/learn-business-applications-of-college-algebra/demand-and-revenue.md +++ b/curriculum/challenges/italian/17-college-algebra-with-python/learn-business-applications-of-college-algebra/demand-and-revenue.md @@ -16,12 +16,12 @@ Ecco il Business Math, a Step-by-Step Handbook (2021) di Jean-Paul Oliver -# --question-- - -## --assignment-- +# --assignment-- Completa i problemi alle pagine 155 e 163 da "Business Math, a Step-by-Step Handbook (2021)". +# --question-- + ## --text-- Quale delle seguenti equazioni di bilancio non è corretta? diff --git a/curriculum/challenges/italian/17-college-algebra-with-python/learn-fractions-and-decimals/converting-fractions-and-decimals.md b/curriculum/challenges/italian/17-college-algebra-with-python/learn-fractions-and-decimals/converting-fractions-and-decimals.md index 02054990080..bd0ee6ac280 100644 --- a/curriculum/challenges/italian/17-college-algebra-with-python/learn-fractions-and-decimals/converting-fractions-and-decimals.md +++ b/curriculum/challenges/italian/17-college-algebra-with-python/learn-fractions-and-decimals/converting-fractions-and-decimals.md @@ -12,12 +12,12 @@ Il primo video ti mostrerà come eseguire conversioni tra frazioni, decimali e p Ecco il notebook Colab notebook usato nel video. Usa questo codice come modello e scrivi il tuo codice per convertire frazioni e decimali. -# --question-- - -## --assignment-- +# --assignment-- Aggiungi il codice per convertire frazioni e decimali al tuo notebook Colab. +# --question-- + ## --text-- Quale delle seguenti risposte rappresenta correttamente "tre centesimi" come decimale? diff --git a/curriculum/challenges/italian/17-college-algebra-with-python/learn-fractions-and-decimals/fractions-and-decimals-extra.md b/curriculum/challenges/italian/17-college-algebra-with-python/learn-fractions-and-decimals/fractions-and-decimals-extra.md index c5b6da2849d..fd826a37430 100644 --- a/curriculum/challenges/italian/17-college-algebra-with-python/learn-fractions-and-decimals/fractions-and-decimals-extra.md +++ b/curriculum/challenges/italian/17-college-algebra-with-python/learn-fractions-and-decimals/fractions-and-decimals-extra.md @@ -12,9 +12,7 @@ Il video seguente ti mostrerà un modo per impostare il tuo notebook Google Cola Ecco il notebook Colab usato in questo video che puoi usare come modello. -# --question-- - -## --assignment-- +# --assignment-- Aggiungi il codice per fattorizzare e risolvere per una variabile al tuo notebook Colab. @@ -22,6 +20,8 @@ Aggiungi il codice per fattorizzare e risolvere per una variabile al tuo noteboo Esegui il seguente notebook per fare pratica a convertire frazioni e decimali. Inoltre, guarda il codice usato per generare i problemi di pratica. +# --question-- + ## --text-- Quale dei seguenti linguaggi non è possibile utilizzare in Google Colaboratory? diff --git a/curriculum/challenges/italian/17-college-algebra-with-python/learn-functions-and-graphing/functions-and-graphing-extra.md b/curriculum/challenges/italian/17-college-algebra-with-python/learn-functions-and-graphing/functions-and-graphing-extra.md index 2b7ce6a3029..771e6a872c6 100644 --- a/curriculum/challenges/italian/17-college-algebra-with-python/learn-functions-and-graphing/functions-and-graphing-extra.md +++ b/curriculum/challenges/italian/17-college-algebra-with-python/learn-functions-and-graphing/functions-and-graphing-extra.md @@ -12,12 +12,12 @@ Questo video ti mostrerà la connessione tra le funzioni e i grafici. Nota come Ecco il notebook Colab per questo video. -# --question-- - -## --assignment-- +# --assignment-- Aggiungi al tuo notebook Colab del codice per le funzioni e i grafici. +# --question-- + ## --text-- Quale libreria Python importeresti per creare array che puoi graficare? diff --git a/curriculum/challenges/italian/17-college-algebra-with-python/learn-functions-and-graphing/functions.md b/curriculum/challenges/italian/17-college-algebra-with-python/learn-functions-and-graphing/functions.md index b9b41ae80fc..4e94d64920e 100644 --- a/curriculum/challenges/italian/17-college-algebra-with-python/learn-functions-and-graphing/functions.md +++ b/curriculum/challenges/italian/17-college-algebra-with-python/learn-functions-and-graphing/functions.md @@ -12,12 +12,12 @@ Questo primo video ti mostrerà cos'è una funzione e poi ti mostrerà le somigl Ecco il notebook Colab usato in questo video e nei prossimi. -# --question-- - -## --assignment-- +# --assignment-- Aggiungi al tuo notebook Colab del codice che crea funzioni Python per le conversioni da decimali a frazioni +# --question-- + ## --text-- Dopo aver definito una funzione in Python, di quanti spazi indenti ogni riga della funzione? diff --git a/curriculum/challenges/italian/17-college-algebra-with-python/learn-functions-and-graphing/graphing.md b/curriculum/challenges/italian/17-college-algebra-with-python/learn-functions-and-graphing/graphing.md index 557bd18fb7a..dfaf03a9738 100644 --- a/curriculum/challenges/italian/17-college-algebra-with-python/learn-functions-and-graphing/graphing.md +++ b/curriculum/challenges/italian/17-college-algebra-with-python/learn-functions-and-graphing/graphing.md @@ -12,9 +12,7 @@ Questo video ti mostrerà la connessione tra le funzioni e i grafici. Nota come Ecco il notebook Colab per gli ultimi due video, usalo per iniziare a creare grafici. -# --question-- - -## --assignment-- +# --assignment-- Aggiungi al tuo notebook Colab del codice per le funzioni e i grafici. @@ -22,6 +20,8 @@ Aggiungi al tuo notebook Colab del codice per le funzioni e i grafici. Esegui il seguente notebook per scoprire altri modi per creare grafici usando l'algebra e Python. +# --question-- + ## --text-- Quale delle seguenti righe di codice traccia una retta blu su un grafico? diff --git a/curriculum/challenges/italian/17-college-algebra-with-python/learn-how-to-graph-systems-of-equations/graphing-systems.md b/curriculum/challenges/italian/17-college-algebra-with-python/learn-how-to-graph-systems-of-equations/graphing-systems.md index 2f62d959caf..d98853e682e 100644 --- a/curriculum/challenges/italian/17-college-algebra-with-python/learn-how-to-graph-systems-of-equations/graphing-systems.md +++ b/curriculum/challenges/italian/17-college-algebra-with-python/learn-how-to-graph-systems-of-equations/graphing-systems.md @@ -12,12 +12,12 @@ Questo primo video ti mostrerà come graficare sistemi di equazioni con la matem Ecco il notebook Colab usato in questo video. -# --question-- - -## --assignment-- +# --assignment-- Aggiungi il codice dal video al notebook di algebra che stai costruendo e testalo con diverse funzioni. +# --question-- + ## --text-- La funzione `linspace()` di numpy prende tre argomenti per creare un array. Quale dei seguenti argomenti non accetta? diff --git a/curriculum/challenges/italian/17-college-algebra-with-python/learn-how-to-solve-for-x/how-to-solve-for-x-extra.md b/curriculum/challenges/italian/17-college-algebra-with-python/learn-how-to-solve-for-x/how-to-solve-for-x-extra.md index c7e3ee7aebb..8de20ab0689 100644 --- a/curriculum/challenges/italian/17-college-algebra-with-python/learn-how-to-solve-for-x/how-to-solve-for-x-extra.md +++ b/curriculum/challenges/italian/17-college-algebra-with-python/learn-how-to-solve-for-x/how-to-solve-for-x-extra.md @@ -12,9 +12,7 @@ Questo video sarà più approfondito, con ulteriori esempi di come utilizzare Sy Ecco il notebook Colab per seguire questo video. Usalo per aggiungere altri contenuti al notebook Colab di algebra che stai costruendo. -# --question-- - -## --assignment-- +# --assignment-- Aggiungi il codice per altri modi per risolvere per x dal video al tuo notebook Colab. @@ -22,6 +20,8 @@ Aggiungi il codice per altri modi per risolvere per x dal video al tuo notebook Apri il seguente notebook Colab, esegui la cella e fai pratica a risolvere problemi di algebra in due passaggi. Inoltre, guarda anche il codice che genera i problemi di pratica. +# --question-- + ## --text-- Se importi sympy e definisci x come una variabile, qual è l'output del seguente codice? diff --git a/curriculum/challenges/italian/17-college-algebra-with-python/learn-how-to-solve-for-x/solving-for-x.md b/curriculum/challenges/italian/17-college-algebra-with-python/learn-how-to-solve-for-x/solving-for-x.md index 5e5ef4b6edd..1e3ded17378 100644 --- a/curriculum/challenges/italian/17-college-algebra-with-python/learn-how-to-solve-for-x/solving-for-x.md +++ b/curriculum/challenges/italian/17-college-algebra-with-python/learn-how-to-solve-for-x/solving-for-x.md @@ -12,12 +12,12 @@ Questo primo video ti mostrerà l'essenza dell'algebra e poi come il codice Pyth Ecco il notebook Colab per seguire questo video. Aggiungi il codice del video al tuo notebook Colab per vedere come risolvere per X usando Python. Poi cambia il codice se vuoi, testalo e confrontalo con la soluzione ottenuta con carta e penna. Ricorda che l'input dell'equazione deve rispettare la sintassi di Python. -# --question-- - -## --assignment-- +# --assignment-- Aggiungi il codice per risolvere per x dal video al tuo notebook Colab. +# --question-- + ## --text-- In Python, qual è la libreria che importi per risolvere i problemi di algebra con le variabili? diff --git a/curriculum/challenges/italian/17-college-algebra-with-python/learn-how-to-solve-systems-of-equations/solving-systems.md b/curriculum/challenges/italian/17-college-algebra-with-python/learn-how-to-solve-systems-of-equations/solving-systems.md index 6aa158fa658..1842fffe37b 100644 --- a/curriculum/challenges/italian/17-college-algebra-with-python/learn-how-to-solve-systems-of-equations/solving-systems.md +++ b/curriculum/challenges/italian/17-college-algebra-with-python/learn-how-to-solve-systems-of-equations/solving-systems.md @@ -12,12 +12,12 @@ Il primo video ti mostrerà la matematica necessaria per risolvere un sistema di Ecco il notebook Colab usato in questo video. -# --question-- - -## --assignment-- +# --assignment-- Aggiungi al tuo notebook del codice per risolvere e graficare sistemi di equazioni +# --question-- + ## --text-- Quale delle seguenti cose può fare SimPy che matplotlib non può? diff --git a/curriculum/challenges/italian/17-college-algebra-with-python/learn-linear-functions/linear-equations.md b/curriculum/challenges/italian/17-college-algebra-with-python/learn-linear-functions/linear-equations.md index 9999694b9c3..296fecf17ea 100644 --- a/curriculum/challenges/italian/17-college-algebra-with-python/learn-linear-functions/linear-equations.md +++ b/curriculum/challenges/italian/17-college-algebra-with-python/learn-linear-functions/linear-equations.md @@ -12,12 +12,12 @@ Questo video ti mostrerà la matematica necessaria per trovare l'intercetta sull Ecco il notebook Colab per i prossimi due video, che puoi usare per vedere le formule. -# --question-- - -## --assignment-- +# --assignment-- Aggiungi il codice al notebook Colab per tracciare una funzione dai punti o dall'input dell'equazione. +# --question-- + ## --text-- Se conosci la pendenza ("m") e hai un punto di coordinate (x,y), quale delle seguenti equazioni puoi utilizzare per trovare "b", che rappresenta l'intercetta sull'asse y in Python? diff --git a/curriculum/challenges/italian/17-college-algebra-with-python/learn-ratios-and-proportions/introduction-to-college-algebra-with-python.md b/curriculum/challenges/italian/17-college-algebra-with-python/learn-ratios-and-proportions/introduction-to-college-algebra-with-python.md index d5b648b8034..2ae7da24c30 100644 --- a/curriculum/challenges/italian/17-college-algebra-with-python/learn-ratios-and-proportions/introduction-to-college-algebra-with-python.md +++ b/curriculum/challenges/italian/17-college-algebra-with-python/learn-ratios-and-proportions/introduction-to-college-algebra-with-python.md @@ -16,12 +16,12 @@ Questo primo video include un'introduzione al corso, come funziona e come utiliz \- Algebra and Trigonometry di Jay Abramson -# --question-- - -## --assignment-- +# --assignment-- Crea un notebook Colab per l'algebra sul tuo google drive in modo da poter seguire i video passo passo. +# --question-- + ## --text-- Quando aggiungi del testo in Google Colab, quale simbolo dovresti usare per creare un'intestazione che apparirà nel sommario? diff --git a/curriculum/challenges/italian/17-college-algebra-with-python/learn-ratios-and-proportions/ratios-and-proportions-extra.md b/curriculum/challenges/italian/17-college-algebra-with-python/learn-ratios-and-proportions/ratios-and-proportions-extra.md index 2bdfc576099..7742981beed 100644 --- a/curriculum/challenges/italian/17-college-algebra-with-python/learn-ratios-and-proportions/ratios-and-proportions-extra.md +++ b/curriculum/challenges/italian/17-college-algebra-with-python/learn-ratios-and-proportions/ratios-and-proportions-extra.md @@ -10,12 +10,12 @@ dashedName: ratios-and-proportions-extra L'ultimo video di questa sezione ti mostrerà come utilizzare le proporzioni in altre applicazioni, come i tassi di cambio e la conversione di unità. Ti mostrerà anche altro sulla creazione dei notebook e su come svolgere le attività pratiche. -# --question-- - -## --assignment-- +# --assignment-- Apri il seguente notebook Colab notebook, esegui la cella e fai pratica a risolvere problemi di algebra in un unico passaggio. Inoltre, guarda anche il codice che genera i problemi di pratica. +# --question-- + ## --text-- Qual è un altro modo per scrivere 0.9999... (9 periodico)? diff --git a/curriculum/challenges/italian/17-college-algebra-with-python/learn-ratios-and-proportions/solving-proportions.md b/curriculum/challenges/italian/17-college-algebra-with-python/learn-ratios-and-proportions/solving-proportions.md index 3ab3079997a..94f356d9465 100644 --- a/curriculum/challenges/italian/17-college-algebra-with-python/learn-ratios-and-proportions/solving-proportions.md +++ b/curriculum/challenges/italian/17-college-algebra-with-python/learn-ratios-and-proportions/solving-proportions.md @@ -12,12 +12,12 @@ E ora passiamo alla matematica. Questo video ti mostrerà come impostare e risol Ecco il notebook Colab per seguire questo video. Se non lo hai ancora fatto, crea un notebook Colab come spiegato nello scorso video. Poi, aggiungigli il codice da questo video. -# --question-- - -## --assignment-- +# --assignment-- Aggiungi il codice del video al notebook Colab che hai creato nel primo step. +# --question-- + ## --text-- Nel risolvere una proporzione, se un numeratore è zero, l'altro numeratore deve essere zero perché l'affermazione sia vera? diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md index 04d809176cc..d5de7121c15 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-do-while/ and complete all the tasks for the "Add Looping Logic to Your Code Using the do-while and while Statements in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Add Looping Logic to Your Code Using the `do`-`while` and `while` Statements in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- A developer needs to iterate through an array of items to find one that matches a certain criteria. Which is the best iteration statement for this purpose? diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md index d0087ce5be8..ee50cb1473b 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-switch-case/ and complete all the tasks for the "Branch the Flow of Code Using the switch-case Construct in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Branch the Flow of Code Using the `switch`-`case` Construct in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What is the purpose of the `break` keyword? diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md index b34b20dcdd7..a837a683f26 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/challenge-project-develop-branching-looping-structures-c-sharp/ and complete all the tasks for the "Challenge Project - Develop Branching and Looping Structures in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Develop Branching and Looping Structures in C# challenge project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- A developer needs to create an iteration statement. Under what condition is a `while` statement a better choice than a `do` statement? diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md index bf5a4084719..68fae6e49b2 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-code-blocks/ and complete all the tasks for the "Control Variable Scope and Logic Using Code Blocks in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Control Variable Scope and Logic Using Code Blocks in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following statements is true about showing/removing the curly braces for code blocks associated with an `if` statement? diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md index 3f503f69e32..f1d60edd59a 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-evaluate-boolean-expressions/ and complete all the tasks for the "Evaluate Boolean Expressions to Make Decisions in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Evaluate Boolean Expressions to Make Decisions in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following lines of code is a valid use of the conditional operator? diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md index f23006f2793..a678783a004 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-develop-conditional-branching-looping/ and complete all the tasks for the "Guided Project - Develop Conditional Branching and Looping Structures in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Develop Conditional Branching and Looping Structures in C# guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- When is it appropriate to use a `switch-case` construct rather than a `if-elseif-else` construct? diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md index 29f7fbe4ca9..d85cd9e79c5 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-for/ and complete all the tasks for the "Iterate Through a Code Block Using the for Statement in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Iterate Through a Code Block Using the `for` Statement in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following `for` statements is correct? diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md index 597a1daa754..b4c34681581 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-if-elseif-else/ and complete all the tasks for the "Add Decision Logic to Your Code Using if, else, and else if statements in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Add Decision Logic to Your Code Using `if`, `else`, and `else if` Statements in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the choices below is not a valid operator in C#? diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md index aeeed01382f..64ee30462ef 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-call-methods/ and complete all the tasks for the "Call Methods From the .NET Class Library Using C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Call Methods from the .NET Class Library Using C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What is an object? diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md index 4124a3e48d0..c19935da753 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/challenge-project-arrays-iteration-selection/ and complete all the tasks for the "Challenge Project - Develop foreach and if-elseif-else Structures to Process Array Data in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Develop `foreach` and `if`-`elseif`-`else` Structures to Process Array Data in C# challenge project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- A developer is working with two other developers to update a collection of applications. The developers will use code comments during the update process. Which of the following describes an appropriate use of code comments? diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md index ff048d90565..221d8229223 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-readable-code/ and complete all the tasks for the "Create Readable Code with Conventions, Whitespace, and Comments in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Create Readable Code with Conventions, Whitespace, and Comments in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following is a bad reason to use a code comment? diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md index 94f87df9df4..af1892b527b 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-arrays-iteration-selection/ and complete all the tasks for the "Guided Project - Develop foreach and if-elseif-else Structures to Process Array Data in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Develop `foreach` and `if`-`elseif`-`else` Structures to Process Array Data in C# guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- A developer writes an application that uses a `foreach` loop to iterate through an array containing 20 elements. After the application is complete, the developer learns that the array must be updated to include 40 elements. The application needs to examine all 40 array elements. Which of the following items describes the required code update? diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md index 293d196cf6f..772087d66a9 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/install-configure-visual-studio-code/ and complete all the tasks for the "Install and Configure Visual Studio Code" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Install and Configure Visual Studio Code module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following choices provides the best description of an Integrated Development Environment (IDE)? diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md index 2e1bc53cae6..33713c19393 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-arrays/ and complete all the tasks for the "Store and Iterate Through Sequences of Data Using Arrays and the foreach Statement in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Store and Iterate Through Sequences of Data Using Arrays and the `foreach` Statement in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following foreach statements is syntactically correct? diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md index 1f9c05bfa10..18794d3b5af 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/challenge-project-create-mini-game/ and complete all the tasks for the "Challenge Project - Create a Mini-Game" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Create a Mini-Game challenge project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- A developer wants to create a method that returns a value in an array. Which of the following options would be a good choice for a method signature? diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md index f30799e881f..01aaf75c313 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/create-c-sharp-methods-return-values/ and complete all the tasks for the "Create C# Methods that Return Values" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Create C# Methods that Return Values module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following options correctly returns a `string` value? diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md index c576ee4c155..44f48d4b8c9 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/create-c-sharp-methods-parameters/ and complete all the tasks for the "Create C# Methods with Parameters" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Create C# Methods with Parameters module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Given the method signature, diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md index aea8d011c19..15877a13f97 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-visit-petting-zoo/ and complete all the tasks for the "Guided Project - Plan a Petting Zoo Visit" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Plan a Petting Zoo Visit guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What is the purpose of defining an optional parameter in a method? diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md index c7bccb05699..7e6313f4a57 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/write-first-c-sharp-method/ and complete all the tasks for the "Write Your First C# Method" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Write Your First C# Method module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following correctly declares a method? diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md index 52415dc17c0..88425acb0d1 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/challenge-project-debug-c-sharp-console-application/ and complete all the tasks for the "Challenge Project - Debug a C# Console Application Using Visual Studio Code" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Debug a C# Console Application Using Visual Studio Code challenge project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following options can be used set a breakpoint in Visual Studio Code? diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md index 3a43bedeeff..82396ebc624 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/create-throw-exceptions-c-sharp/ and complete all the tasks for the "Create and Throw Exceptions in C# Console Applications" module. This is **required** earn to the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Create and Throw Exceptions in C# Console Applications module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- When should a method throw an exception? diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md index c96c6dbf3d0..33d1914183f 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-debug-handle-exceptions-c-sharp-console-application/ and complete all the tasks for the "Guided Project - Debug and Handle Exceptions in a C# Console Application Using Visual Studio Code" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Debug and Handle Exceptions in a C# Console Application Using Visual Studio Code guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- When is an `ArgumentOutOfRangeException` exception thrown? diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md index a437297321d..d77786e00f0 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/implement-exception-handling-c-sharp/ and complete all the tasks for the "Implement Exception Handling in C# Console Applications" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Implement Exception Handling in C# Console Applications module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- When is an `ArrayTypeMismatchException` exception thrown? diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md index cf989a73210..eaf0a57a505 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/implement-visual-studio-code-debugging-tools/ and complete all the tasks for the "Implement the Visual Studio Code Debugging Tools for C#" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Implement the Visual Studio Code Debugging Tools for C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which section of the RUN AND DEBUG view is used to track the current point of execution within the running application? diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md index fb54c916c41..66529f25875 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/review-principles-code-debugging-exception-handling-c-sharp/ and complete all the tasks for the "Review the Principles of Code Debugging and Exception Handling" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Review the Principles of Code Debugging and Exception Handling module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What is the relationship between the type of exception and the information it contains? diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md index 57357fa507f..3283ae458e5 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/challenge-project-work-variable-data-c-sharp/ and complete all the tasks for the "Challenge Project - Work with Variable Data in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Work with Variable Data in C# challenge project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- To sort a string array, why is it important to use the `String.Trim()` method on each array element before sorting? diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md index cfc6e5f6417..90ad0c24ddc 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-choose-data-type/ and complete all the tasks for the "Choose the Correct Data Type in Your C# Code" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Choose the Correct Data Type in Your C# Code module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- A piece of code must store whole numeric values between negative and positive `1,000,000`. Which data type should you choose? diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md index 7e3cccdbf6c..2f81848ec0c 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-convert-cast/ and complete all the tasks for the "Convert Data Types Using Casting and Conversion Techniques in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Convert Data Types Using Casting and Conversion Techniques in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What type of action is being performed when changing a `float` into an `int`? diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md index 25db424abb8..4f13971f084 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-format-strings/ and complete all the tasks for the "Format Alphanumeric Data for Presentation in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Format Alphanumeric Data for Presentation in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- For the C# code `Console.WriteLine("C110".PadLeft(6, '0'));`, which is the expected output? diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md index 41a67d95996..d70b33e0034 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-work-variable-data-c-sharp/ and complete all the tasks for the "Guided Project - Work with Variable Data in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Work with Variable Data in C# guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- For the code `decimal.TryParse(numberString, out myConvert))` when the type of `numberString` is a String. diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md index 7a75db01628..f3193f3dfc2 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-modify-content/ and complete all the tasks for the "Modify the Content of Strings Using Built-In String Data Type Methods in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Modify the Content of Strings Using Built-In String Data Type Methods in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which method finds the next index of either the `-` char, the `=` char, or the `_` char? diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md index f51f67bd1d7..14353de4a63 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-arrays-operations/ and complete all the tasks for the "Perform Operations on Arrays Using Helper Methods in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Perform Operations on Arrays Using Helper Methods in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which method changes the order of items in an `string` array? diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md index 7a7836123bb..131c73af39c 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-calculate-print-student-grades/ and complete all the tasks for the "Guided Project - Calculate and Print Student Grades" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Calculate and Print Student Grades guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What is wrong with the following code? diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md index f4d5d576477..6a5491e8f12 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-calculate-final-gpa/ and complete all the tasks for the "Guided Project - Calculate Final GPA" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Calculate Final GPA guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Suppose `decimal gradePointAverage = 3.99872831m;`. diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md index 09ea0a4fd28..71e056d641f 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-basic-operations/ and complete all the tasks for the "Perform Basic Operations on Numbers in C#" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Perform Basic Operations on Numbers in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What is the value of the following result? diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md index 8fe6df7466b..6a00bd662df 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-basic-formatting/ and complete all the tasks for the "Perform Basic String Formatting in C#" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Perform Basic String Formatting in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following lines of code correctly uses string interpolation assuming that the variable `value` is a string? diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md index 8c1bb0619d3..f229f0d8387 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-literals-variables/ and complete all the tasks for the "Store and Retrieve Data Using Literal and Variable Values in C#" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Store and Retrieve Data Using Literal and Variable Values in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following lines of code creates a variable correctly? diff --git a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md index c2b06ef0c32..e9da470c2a1 100644 --- a/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md +++ b/curriculum/challenges/italian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-write-first/ and complete all the tasks in the "Write Your First C# Code" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Write Your First C# Code module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What is the difference between `Console.Write` and `Console.WriteLine`? diff --git a/curriculum/challenges/japanese/16-the-odin-project/top-learn-html-foundations/html-foundations-question-a.md b/curriculum/challenges/japanese/16-the-odin-project/top-learn-html-foundations/html-foundations-question-a.md index 26dcaf81d51..138c596a766 100644 --- a/curriculum/challenges/japanese/16-the-odin-project/top-learn-html-foundations/html-foundations-question-a.md +++ b/curriculum/challenges/japanese/16-the-odin-project/top-learn-html-foundations/html-foundations-question-a.md @@ -26,12 +26,12 @@ HTML has a vast list of predefined tags that you can use to create all kinds of Using the correct elements for content is called semantic HTML. You will explore this in much more depth later on in the curriculum. -# --question-- - -## --assignment-- +# --assignment-- Watch Kevin Powell’s [Introduction to HTML video](https://www.youtube.com/watch?v=LGQuIIv2RVA&list=PL4-IK0AVhVjM0xE0K2uZRvsM7LkIhsPT-) +# --question-- + ## --text-- What are HTML tags? diff --git a/curriculum/challenges/japanese/16-the-odin-project/top-learn-html-foundations/html-foundations-question-e.md b/curriculum/challenges/japanese/16-the-odin-project/top-learn-html-foundations/html-foundations-question-e.md index 58e4fab1b96..0a6e5658f3d 100644 --- a/curriculum/challenges/japanese/16-the-odin-project/top-learn-html-foundations/html-foundations-question-e.md +++ b/curriculum/challenges/japanese/16-the-odin-project/top-learn-html-foundations/html-foundations-question-e.md @@ -11,12 +11,12 @@ HTML and CSS are two languages that work together to create everything that you Many helpful resources out there keep referring to HTML and CSS as programming languages, but if you want to get technical, labeling them as such is not quite accurate. This is because they are only concerned with presenting information. They are not used to program logic. JavaScript, which you will learn in the next section, is a programming language because it’s used to make webpages do things. Yet, there is quite a lot you can do with just HTML and CSS, and you will definitely need them both. Throughout our curriculum, the following lessons focus on giving you the tools you need to succeed once you reach JavaScript content. -# --question-- - -## --assignment-- +# --assignment-- Read the HTML vs CSS vs JavaScript article. It is a quick overview of the relationships between HTML, CSS, and JavaScript. +# --question-- + ## --text-- Which of the following statements is true? @@ -37,5 +37,3 @@ HTML and CSS are used to add style to a webpage, and JavaScript is used to creat ## --video-solution-- 2 - - diff --git a/curriculum/challenges/japanese/16-the-odin-project/top-learn-html-foundations/html-foundations-question-g.md b/curriculum/challenges/japanese/16-the-odin-project/top-learn-html-foundations/html-foundations-question-g.md index 16299d58648..29cc79ceab3 100644 --- a/curriculum/challenges/japanese/16-the-odin-project/top-learn-html-foundations/html-foundations-question-g.md +++ b/curriculum/challenges/japanese/16-the-odin-project/top-learn-html-foundations/html-foundations-question-g.md @@ -12,9 +12,7 @@ The final element needed to complete the HTML boilerplate is the `` elemen To complete the boilerplate, add a `body` element to the `index.html` file. The `body` element also goes within the `html` element and is always below the `head` element, like so: -# --question-- - -## --assignment-- +# --assignment-- Watch and follow along to Kevin Powell’s brilliant Building your first web page video above. @@ -26,6 +24,8 @@ Build some muscle memory by deleting the contents of the `index.html` file and t Run your boilerplate through this [HTML validator](https://www.freeformatter.com/html-validator.html). Validators ensure your markup is correct and are an excellent learning tool, as they provide feedback on syntax errors you may be making often and aren’t aware of, such as missing closing tags and extra spaces in your HTML. +# --question-- + ## --text-- What is the purpose of the `body` element? diff --git a/curriculum/challenges/japanese/16-the-odin-project/top-links-and-images/links-and-images-question-a.md b/curriculum/challenges/japanese/16-the-odin-project/top-links-and-images/links-and-images-question-a.md index b4d237448f3..09759d1d3e7 100644 --- a/curriculum/challenges/japanese/16-the-odin-project/top-links-and-images/links-and-images-question-a.md +++ b/curriculum/challenges/japanese/16-the-odin-project/top-links-and-images/links-and-images-question-a.md @@ -39,12 +39,12 @@ By default, any text wrapped with an anchor tag without a `href` attribute will It’s worth noting you can use anchor tags to link to any kind of resource on the internet, not just other HTML documents. You can link to videos, pdf files, images, and so on, but for the most part, you will be linking to other HTML documents. -# --question-- - -## --assignment-- +# --assignment-- Watch Kevin Powell’s HTML Links video above. +# --question-- + ## --text-- What HTML tag is used to create a link? diff --git a/curriculum/challenges/japanese/16-the-odin-project/top-links-and-images/links-and-images-question-d.md b/curriculum/challenges/japanese/16-the-odin-project/top-links-and-images/links-and-images-question-d.md index 37eebffbabf..19e8da36314 100644 --- a/curriculum/challenges/japanese/16-the-odin-project/top-links-and-images/links-and-images-question-d.md +++ b/curriculum/challenges/japanese/16-the-odin-project/top-links-and-images/links-and-images-question-d.md @@ -85,12 +85,12 @@ In many cases, this will work just fine; however, you can still run into unexpec ``` -# --question-- - -## --assignment-- +# --assignment-- Watch Kevin Powell’s HTML File Structure video above. +# --question-- + ## --text-- What is the difference between an absolute and a relative link? diff --git a/curriculum/challenges/japanese/16-the-odin-project/top-links-and-images/links-and-images-question-e.md b/curriculum/challenges/japanese/16-the-odin-project/top-links-and-images/links-and-images-question-e.md index ae008078088..8ac3815d177 100644 --- a/curriculum/challenges/japanese/16-the-odin-project/top-links-and-images/links-and-images-question-e.md +++ b/curriculum/challenges/japanese/16-the-odin-project/top-links-and-images/links-and-images-question-e.md @@ -71,12 +71,12 @@ The `alt` attribute is used to describe an image. It will be used in place of th This is how the The Odin Project logo example you used earlier looks with an `alt` attribute included: -# --question-- - -## --assignment-- +# --assignment-- Watch Kevin Powell’s HTML Images Video above. +# --question-- + ## --text-- Which tag is used to display an image? diff --git a/curriculum/challenges/japanese/16-the-odin-project/top-links-and-images/links-and-images-question-h.md b/curriculum/challenges/japanese/16-the-odin-project/top-links-and-images/links-and-images-question-h.md index 71157081ae7..f7ed108d84e 100644 --- a/curriculum/challenges/japanese/16-the-odin-project/top-links-and-images/links-and-images-question-h.md +++ b/curriculum/challenges/japanese/16-the-odin-project/top-links-and-images/links-and-images-question-h.md @@ -70,12 +70,12 @@ The `alt` attribute is used to describe an image. It will be used in place of th This is how the The Odin Project logo example you used earlier looks with an alt attribute included: -# --question-- - -## --assignment-- +# --assignment-- Read about the four main image formats that can be used on the web. +# --question-- + ## --text-- What are the four main image formats that you can use for images on the web? diff --git a/curriculum/challenges/japanese/16-the-odin-project/top-the-box-model/the-box-model-question-a.md b/curriculum/challenges/japanese/16-the-odin-project/top-the-box-model/the-box-model-question-a.md index 81cc2d54518..e2882cdb454 100644 --- a/curriculum/challenges/japanese/16-the-odin-project/top-the-box-model/the-box-model-question-a.md +++ b/curriculum/challenges/japanese/16-the-odin-project/top-the-box-model/the-box-model-question-a.md @@ -13,12 +13,12 @@ To open up the inspector, you can right-click on any element of a webpage and cl Don’t get overwhelmed with all the tools you’re now seeing! For this lesson, we want to focus on the Elements and Styles panes. -# --question-- - -## --assignment-- +# --assignment-- Play around with Chrome Dev Tools and see if you can answer the following question. +# --question-- + ## --text-- Which panes should you focus on in the Chrome Dev Tools for inspecting and debugging HTML and CSS? diff --git a/curriculum/challenges/japanese/16-the-odin-project/top-the-box-model/the-box-model-question-c.md b/curriculum/challenges/japanese/16-the-odin-project/top-the-box-model/the-box-model-question-c.md index 84cee19aea0..25a32e0f581 100644 --- a/curriculum/challenges/japanese/16-the-odin-project/top-the-box-model/the-box-model-question-c.md +++ b/curriculum/challenges/japanese/16-the-odin-project/top-the-box-model/the-box-model-question-c.md @@ -14,12 +14,12 @@ When an element is selected, the Styles tab will show all the currently applied ![Overwritten style](https://cdn.statically.io/gh/TheOdinProject/curriculum/f8fd38fc62578d8e8368f5303126215a492847f0/foundations/html_css/inspecting-html-and-css/imgs/03.png) -# --question-- - -## --assignment-- +# --assignment-- Play around with Chrome Dev Tools and see if you can answer the following question. +# --question-- + ## --text-- Which feature in the Elements pane allows you to select any element on a webpage by hovering over it? diff --git a/curriculum/challenges/japanese/16-the-odin-project/top-the-box-model/the-box-model-question-d.md b/curriculum/challenges/japanese/16-the-odin-project/top-the-box-model/the-box-model-question-d.md index 4d882631471..a4d810760a5 100644 --- a/curriculum/challenges/japanese/16-the-odin-project/top-the-box-model/the-box-model-question-d.md +++ b/curriculum/challenges/japanese/16-the-odin-project/top-the-box-model/the-box-model-question-d.md @@ -14,13 +14,12 @@ When an element is selected, the Styles tab will show all the currently applied ![Overwritten style](https://cdn.statically.io/gh/TheOdinProject/curriculum/f8fd38fc62578d8e8368f5303126215a492847f0/foundations/html_css/inspecting-html-and-css/imgs/03.png) - -# --question-- - -## --assignment-- +# --assignment-- Play around with Chrome Dev Tools and see if you can answer the following question. +# --question-- + ## --text-- In the Styles pane, what information can you view about an element when it is selected? diff --git a/curriculum/challenges/japanese/16-the-odin-project/top-the-box-model/the-box-model-question-f.md b/curriculum/challenges/japanese/16-the-odin-project/top-the-box-model/the-box-model-question-f.md index a91d049aee3..96e12157b13 100644 --- a/curriculum/challenges/japanese/16-the-odin-project/top-the-box-model/the-box-model-question-f.md +++ b/curriculum/challenges/japanese/16-the-odin-project/top-the-box-model/the-box-model-question-f.md @@ -16,13 +16,12 @@ Every single thing on a webpage is a rectangular box. These boxes can have other } ``` - -# --question-- - -## --assignment-- +# --assignment-- Add a border to every element on the page and see how the boxes are laid out. +# --question-- + ## --text-- What is the fundamental concept in CSS that helps you understand the structure of elements as rectangular boxes? diff --git a/curriculum/challenges/japanese/16-the-odin-project/top-the-box-model/the-box-model-question-g.md b/curriculum/challenges/japanese/16-the-odin-project/top-the-box-model/the-box-model-question-g.md index b8c981a7aa9..fdd4840cfa0 100644 --- a/curriculum/challenges/japanese/16-the-odin-project/top-the-box-model/the-box-model-question-g.md +++ b/curriculum/challenges/japanese/16-the-odin-project/top-the-box-model/the-box-model-question-g.md @@ -20,12 +20,12 @@ Be sure to study the diagrams carefully. ![the box model](https://cdn.statically.io/gh/TheOdinProject/curriculum/main/foundations/html_css/css-foundations/the-box-model/imgs/box-model.png) -# --question-- - -## --assignment-- +# --assignment-- Add a border to every element on the page and see how the boxes are laid out. +# --question-- + ## --text-- From inside to outside, what is the order of box-model properties? diff --git a/curriculum/challenges/japanese/16-the-odin-project/top-working-with-text/working-with-text-question-a.md b/curriculum/challenges/japanese/16-the-odin-project/top-working-with-text/working-with-text-question-a.md index 8698b62aca8..33176924828 100644 --- a/curriculum/challenges/japanese/16-the-odin-project/top-working-with-text/working-with-text-question-a.md +++ b/curriculum/challenges/japanese/16-the-odin-project/top-working-with-text/working-with-text-question-a.md @@ -32,12 +32,12 @@ Changing our example from before to use paragraph elements fixes the issue: -# --question-- - -## --assignment-- +# --assignment-- Watch and follow along to Kevin Powell’s HTML Paragraph and Headings Video above. +# --question-- + ## --text-- How do you create a paragraph in HTML? diff --git a/curriculum/challenges/japanese/16-the-odin-project/top-working-with-text/working-with-text-question-c.md b/curriculum/challenges/japanese/16-the-odin-project/top-working-with-text/working-with-text-question-c.md index 6ccf0e06658..da6e3dd4511 100644 --- a/curriculum/challenges/japanese/16-the-odin-project/top-working-with-text/working-with-text-question-c.md +++ b/curriculum/challenges/japanese/16-the-odin-project/top-working-with-text/working-with-text-question-c.md @@ -20,12 +20,12 @@ But you will probably find yourself using the `strong` element much more in comb Sometimes you will want to make text bold without giving it an important meaning. You’ll learn how to do that in the CSS lessons later in the curriculum. -# --question-- - -## --assignment-- +# --assignment-- Watch Kevin Powell’s HTML Bold and Italic Text Video above. +# --question-- + ## --text-- What element should you use to make text bold and important? diff --git a/curriculum/challenges/japanese/16-the-odin-project/top-working-with-text/working-with-text-question-g.md b/curriculum/challenges/japanese/16-the-odin-project/top-working-with-text/working-with-text-question-g.md index 5f5d141fa46..23881db5be0 100644 --- a/curriculum/challenges/japanese/16-the-odin-project/top-working-with-text/working-with-text-question-g.md +++ b/curriculum/challenges/japanese/16-the-odin-project/top-working-with-text/working-with-text-question-g.md @@ -21,12 +21,12 @@ Writing an HTML comment is simple: You just enclose the comment with ` ``` -# --question-- - -## --assignment-- +# --assignment-- To get some practice working with text in HTML, create a plain blog article page which uses different headings, uses paragraphs, and has some text in the paragraphs bolded and italicized. You can use [Lorem Ipsum](https://loremipsum.io) to generate dummy text, in place of real text as you build your sites. +# --question-- + ## --text-- How do you create HTML comments? diff --git a/curriculum/challenges/japanese/16-the-odin-project/top-working-with-text/working-with-text-question-h.md b/curriculum/challenges/japanese/16-the-odin-project/top-working-with-text/working-with-text-question-h.md index c20b4de097a..29feb0cf613 100644 --- a/curriculum/challenges/japanese/16-the-odin-project/top-working-with-text/working-with-text-question-h.md +++ b/curriculum/challenges/japanese/16-the-odin-project/top-working-with-text/working-with-text-question-h.md @@ -22,9 +22,7 @@ Ordered lists are created using the `
                ` element. Each individual item in them -# --question-- - -## --assignment-- +# --assignment-- Watch the first three minutes of Kevin Powell's video on Ordered and Unordered lists above. @@ -44,6 +42,8 @@ Make an unordered list of places you’d like to visit someday. Make an ordered list of your all time top 5 favorite video games or movies. +# --question-- + ## --text-- What HTML tag is used to create an unordered list? diff --git a/curriculum/challenges/japanese/17-college-algebra-with-python/learn-applications-of-linear-systems/word-problems.md b/curriculum/challenges/japanese/17-college-algebra-with-python/learn-applications-of-linear-systems/word-problems.md index 0a15305c01e..1b2711c96f6 100644 --- a/curriculum/challenges/japanese/17-college-algebra-with-python/learn-applications-of-linear-systems/word-problems.md +++ b/curriculum/challenges/japanese/17-college-algebra-with-python/learn-applications-of-linear-systems/word-problems.md @@ -16,9 +16,7 @@ This first video will look at key words that tell you what math operation to use \- Algebra and Trigonometry by Jay Abramson -# --question-- - -## --assignment-- +# --assignment-- Complete the problems on pages 63, 75, 85, and 118 from "Business Math, a Step-by-Step Handbook (2021)". @@ -26,6 +24,8 @@ Complete the problems on pages 63, 75, 85, and 118 from "Business Math, a Step-b Complete the problems on pages 304, 308, and 321 from "Algebra and Trigonometry". +# --question-- + ## --text-- Which of the following key words indicate subtraction? diff --git a/curriculum/challenges/japanese/17-college-algebra-with-python/learn-business-applications-of-college-algebra/demand-and-revenue.md b/curriculum/challenges/japanese/17-college-algebra-with-python/learn-business-applications-of-college-algebra/demand-and-revenue.md index ca2ea6f7796..0a70a02cf1d 100644 --- a/curriculum/challenges/japanese/17-college-algebra-with-python/learn-business-applications-of-college-algebra/demand-and-revenue.md +++ b/curriculum/challenges/japanese/17-college-algebra-with-python/learn-business-applications-of-college-algebra/demand-and-revenue.md @@ -16,12 +16,12 @@ Here is the Business Math, a Step-by-Step Handbook (2021) by Jean-Paul Oliver -# --question-- - -## --assignment-- +# --assignment-- Complete the problems on pages 155 and 163 from "Business Math, a Step-by-Step Handbook (2021)". +# --question-- + ## --text-- Which of the following business equations is not correct? diff --git a/curriculum/challenges/japanese/17-college-algebra-with-python/learn-fractions-and-decimals/converting-fractions-and-decimals.md b/curriculum/challenges/japanese/17-college-algebra-with-python/learn-fractions-and-decimals/converting-fractions-and-decimals.md index 7386db1e3a1..5224ac7cf0a 100644 --- a/curriculum/challenges/japanese/17-college-algebra-with-python/learn-fractions-and-decimals/converting-fractions-and-decimals.md +++ b/curriculum/challenges/japanese/17-college-algebra-with-python/learn-fractions-and-decimals/converting-fractions-and-decimals.md @@ -12,12 +12,12 @@ The first video will show you how to convert between fractions, decimals, and pe Here is the Colab notebook used in the video. Use this code as a model, and write your own code to convert fractions and decimals. -# --question-- - -## --assignment-- +# --assignment-- Add the code to convert fractions and decimals to your algebra Colab notebook. +# --question-- + ## --text-- Which of the following correctly represents "three hundredths" as a decimal? diff --git a/curriculum/challenges/japanese/17-college-algebra-with-python/learn-fractions-and-decimals/fractions-and-decimals-extra.md b/curriculum/challenges/japanese/17-college-algebra-with-python/learn-fractions-and-decimals/fractions-and-decimals-extra.md index e1ac138f79e..7c367228f0c 100644 --- a/curriculum/challenges/japanese/17-college-algebra-with-python/learn-fractions-and-decimals/fractions-and-decimals-extra.md +++ b/curriculum/challenges/japanese/17-college-algebra-with-python/learn-fractions-and-decimals/fractions-and-decimals-extra.md @@ -12,9 +12,7 @@ The following video will show you one way to set up your Google Colaboratory not Here is the Colab notebook used in this video so you can use it as a model. -# --question-- - -## --assignment-- +# --assignment-- Add the code to factor and solve for a variable to your algebra Colab notebook. @@ -22,6 +20,8 @@ Add the code to factor and solve for a variable to your algebra Colab notebook. Run the code in the following notebook to get practice converting fractions and decimals. As a bonus, look at the code used to generate the practice problems. +# --question-- + ## --text-- Which of the following languages can you not use in Google Colaboratory? diff --git a/curriculum/challenges/japanese/17-college-algebra-with-python/learn-functions-and-graphing/functions-and-graphing-extra.md b/curriculum/challenges/japanese/17-college-algebra-with-python/learn-functions-and-graphing/functions-and-graphing-extra.md index d5516d90fb2..4cc6201ae95 100644 --- a/curriculum/challenges/japanese/17-college-algebra-with-python/learn-functions-and-graphing/functions-and-graphing-extra.md +++ b/curriculum/challenges/japanese/17-college-algebra-with-python/learn-functions-and-graphing/functions-and-graphing-extra.md @@ -12,12 +12,12 @@ This next video will show you the connection between functions and graphing. Not Here is the Colab notebook to go with this video. -# --question-- - -## --assignment-- +# --assignment-- Add code to your algebra Colab notebook for functions and graphing. +# --question-- + ## --text-- What Python library would you import to create arrays that you can graph? diff --git a/curriculum/challenges/japanese/17-college-algebra-with-python/learn-functions-and-graphing/functions.md b/curriculum/challenges/japanese/17-college-algebra-with-python/learn-functions-and-graphing/functions.md index a5f13dca979..d511fecf032 100644 --- a/curriculum/challenges/japanese/17-college-algebra-with-python/learn-functions-and-graphing/functions.md +++ b/curriculum/challenges/japanese/17-college-algebra-with-python/learn-functions-and-graphing/functions.md @@ -12,12 +12,12 @@ This first video will show you what it means to be a function, and then it will Here is the Colab notebook used in this and the next videos. -# --question-- - -## --assignment-- +# --assignment-- Add code to your algebra Colab notebook that creates Python functions for decimal-to-fraction conversions +# --question-- + ## --text-- After defining a function in Python, indent each line of the function how many spaces? diff --git a/curriculum/challenges/japanese/17-college-algebra-with-python/learn-functions-and-graphing/graphing.md b/curriculum/challenges/japanese/17-college-algebra-with-python/learn-functions-and-graphing/graphing.md index ac237fcbcb2..3c170849ede 100644 --- a/curriculum/challenges/japanese/17-college-algebra-with-python/learn-functions-and-graphing/graphing.md +++ b/curriculum/challenges/japanese/17-college-algebra-with-python/learn-functions-and-graphing/graphing.md @@ -12,9 +12,7 @@ This next video will show you the connection between functions and graphing. Not Here is the Colab notebook to go with the last two videos so you can start making your own graphs. -# --question-- - -## --assignment-- +# --assignment-- Add code to your algebra Colab notebook for functions and graphing. @@ -22,6 +20,8 @@ Add code to your algebra Colab notebook for functions and graphing. Run the following notebook to see more ways to create graphs using algebra and Python. +# --question-- + ## --text-- Which of the following would put a blue line on a graph? diff --git a/curriculum/challenges/japanese/17-college-algebra-with-python/learn-how-to-graph-systems-of-equations/graphing-systems.md b/curriculum/challenges/japanese/17-college-algebra-with-python/learn-how-to-graph-systems-of-equations/graphing-systems.md index d9dca33678b..7224ab905a2 100644 --- a/curriculum/challenges/japanese/17-college-algebra-with-python/learn-how-to-graph-systems-of-equations/graphing-systems.md +++ b/curriculum/challenges/japanese/17-college-algebra-with-python/learn-how-to-graph-systems-of-equations/graphing-systems.md @@ -12,12 +12,12 @@ This first video will show you how to graph systems of equations with written ma Here is the Colab notebook used in this video. -# --question-- - -## --assignment-- +# --assignment-- Add code from the video to the algebra notebook you are building, and test it with different functions. +# --question-- + ## --text-- The numpy `linspace()` function takes three arguments to create an array. Which of the following arguments does it not take? diff --git a/curriculum/challenges/japanese/17-college-algebra-with-python/learn-how-to-solve-for-x/how-to-solve-for-x-extra.md b/curriculum/challenges/japanese/17-college-algebra-with-python/learn-how-to-solve-for-x/how-to-solve-for-x-extra.md index 5d9ca07f933..18484302ead 100644 --- a/curriculum/challenges/japanese/17-college-algebra-with-python/learn-how-to-solve-for-x/how-to-solve-for-x-extra.md +++ b/curriculum/challenges/japanese/17-college-algebra-with-python/learn-how-to-solve-for-x/how-to-solve-for-x-extra.md @@ -12,9 +12,7 @@ This video will go deeper, with more examples of how to use SymPy solve. It will Here is the Colab notebook to go along with this video. Use it to add more to the algebra Colab notebook that you are building. -# --question-- - -## --assignment-- +# --assignment-- Add the code for more ways to solve for x from the video to your algebra Colab notebook. @@ -22,6 +20,8 @@ Add the code for more ways to solve for x from the video to your algebra Colab n Open the following Colab notebook, run the cell, and practice solving one and two-step algebra problems. As a bonus, look at the code that generates the practice problems. +# --question-- + ## --text-- If you import sympy and define x as a variable, what would be the output from the following code? diff --git a/curriculum/challenges/japanese/17-college-algebra-with-python/learn-how-to-solve-for-x/solving-for-x.md b/curriculum/challenges/japanese/17-college-algebra-with-python/learn-how-to-solve-for-x/solving-for-x.md index cf99c6cfbd1..359af3680b5 100644 --- a/curriculum/challenges/japanese/17-college-algebra-with-python/learn-how-to-solve-for-x/solving-for-x.md +++ b/curriculum/challenges/japanese/17-college-algebra-with-python/learn-how-to-solve-for-x/solving-for-x.md @@ -12,12 +12,12 @@ This first video will show you the essence of algebra and then how Python code d Here is the Colab notebook to go along with this video. Add the code from the video to your algebra Colab notebook to see how to solve for X using Python. Then change the code if you want, test it, and compare it to paper-and-pencil solving. Remember the equation input needs to be in Python syntax. -# --question-- - -## --assignment-- +# --assignment-- Add the code to solve for x from the video to your algebra Colab notebook. +# --question-- + ## --text-- In Python, what is the library you import to solve algebra problems with variables? diff --git a/curriculum/challenges/japanese/17-college-algebra-with-python/learn-how-to-solve-systems-of-equations/solving-systems.md b/curriculum/challenges/japanese/17-college-algebra-with-python/learn-how-to-solve-systems-of-equations/solving-systems.md index 08847d0f8a6..fff4fb886a7 100644 --- a/curriculum/challenges/japanese/17-college-algebra-with-python/learn-how-to-solve-systems-of-equations/solving-systems.md +++ b/curriculum/challenges/japanese/17-college-algebra-with-python/learn-how-to-solve-systems-of-equations/solving-systems.md @@ -12,12 +12,12 @@ The first video will show you the math behind solving a system of two equations Here is the Colab notebook used in this video. -# --question-- - -## --assignment-- +# --assignment-- Add code to your notebook to solve and graph systems of equations +# --question-- + ## --text-- Which of the following can SymPy do that matplotlib can't do? diff --git a/curriculum/challenges/japanese/17-college-algebra-with-python/learn-linear-functions/linear-equations.md b/curriculum/challenges/japanese/17-college-algebra-with-python/learn-linear-functions/linear-equations.md index c513b57f2eb..e6b1e211b81 100644 --- a/curriculum/challenges/japanese/17-college-algebra-with-python/learn-linear-functions/linear-equations.md +++ b/curriculum/challenges/japanese/17-college-algebra-with-python/learn-linear-functions/linear-equations.md @@ -12,12 +12,12 @@ This video will show you the math behind finding the y-intercept in a linear fun Here is the Colab notebook to go with the last two videos, so you can see the formulas. -# --question-- - -## --assignment-- +# --assignment-- Add code to your algebra Colab notebook to graph a function from points or from equation input. +# --question-- + ## --text-- If you know the slope ("m") and you have one (x,y) coordinate point, which of the following equations could you use to find "b", representing the y-intercept in Python? diff --git a/curriculum/challenges/japanese/17-college-algebra-with-python/learn-ratios-and-proportions/introduction-to-college-algebra-with-python.md b/curriculum/challenges/japanese/17-college-algebra-with-python/learn-ratios-and-proportions/introduction-to-college-algebra-with-python.md index 834b288fe92..66e0414871b 100644 --- a/curriculum/challenges/japanese/17-college-algebra-with-python/learn-ratios-and-proportions/introduction-to-college-algebra-with-python.md +++ b/curriculum/challenges/japanese/17-college-algebra-with-python/learn-ratios-and-proportions/introduction-to-college-algebra-with-python.md @@ -16,12 +16,12 @@ This first video includes an introduction to the course, how it will work, and h \- Algebra and Trigonometry by Jay Abramson -# --question-- - -## --assignment-- +# --assignment-- Create an algebra Colab notebook on your google drive so you can follow along with the videos. +# --question-- + ## --text-- When adding text in Google Colab, what symbol would you use to create a heading that will appear in the table of contents? diff --git a/curriculum/challenges/japanese/17-college-algebra-with-python/learn-ratios-and-proportions/ratios-and-proportions-extra.md b/curriculum/challenges/japanese/17-college-algebra-with-python/learn-ratios-and-proportions/ratios-and-proportions-extra.md index 663f0cc63e5..170a6679d68 100644 --- a/curriculum/challenges/japanese/17-college-algebra-with-python/learn-ratios-and-proportions/ratios-and-proportions-extra.md +++ b/curriculum/challenges/japanese/17-college-algebra-with-python/learn-ratios-and-proportions/ratios-and-proportions-extra.md @@ -10,12 +10,12 @@ dashedName: ratios-and-proportions-extra The last video in this section will show you how to use proportions in other applications, such as currency exchange rates and unit conversion. It will also show you more about setting up your notebook and working through the practice assignment. -# --question-- - -## --assignment-- +# --assignment-- Open the following Colab notebook, run the cell, and practice solving one-step algebra problems. As a bonus, look at the code that generates the practice problems. +# --question-- + ## --text-- What is another way to write 0.9999... (repeating 9)? diff --git a/curriculum/challenges/japanese/17-college-algebra-with-python/learn-ratios-and-proportions/solving-proportions.md b/curriculum/challenges/japanese/17-college-algebra-with-python/learn-ratios-and-proportions/solving-proportions.md index 8371ec1655d..14a060f564e 100644 --- a/curriculum/challenges/japanese/17-college-algebra-with-python/learn-ratios-and-proportions/solving-proportions.md +++ b/curriculum/challenges/japanese/17-college-algebra-with-python/learn-ratios-and-proportions/solving-proportions.md @@ -12,12 +12,12 @@ Now we get to the math content. This video will show you how to set up and solve Here is the Colab notebook to go along with this video. If you have not done so yet, set up your algebra Colab notebook from the last video. Then, add the code from this video to it. -# --question-- - -## --assignment-- +# --assignment-- Add the code from the video to the algebra Colab notebook you created in the first step. +# --question-- + ## --text-- In solving a proportion, if one numerator is zero, does the other numerator have to be zero for the statement to be true? diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md index 04d809176cc..d5de7121c15 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-do-while/ and complete all the tasks for the "Add Looping Logic to Your Code Using the do-while and while Statements in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Add Looping Logic to Your Code Using the `do`-`while` and `while` Statements in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- A developer needs to iterate through an array of items to find one that matches a certain criteria. Which is the best iteration statement for this purpose? diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md index d0087ce5be8..ee50cb1473b 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-switch-case/ and complete all the tasks for the "Branch the Flow of Code Using the switch-case Construct in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Branch the Flow of Code Using the `switch`-`case` Construct in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What is the purpose of the `break` keyword? diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md index b34b20dcdd7..a837a683f26 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/challenge-project-develop-branching-looping-structures-c-sharp/ and complete all the tasks for the "Challenge Project - Develop Branching and Looping Structures in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Develop Branching and Looping Structures in C# challenge project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- A developer needs to create an iteration statement. Under what condition is a `while` statement a better choice than a `do` statement? diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md index bf5a4084719..68fae6e49b2 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-code-blocks/ and complete all the tasks for the "Control Variable Scope and Logic Using Code Blocks in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Control Variable Scope and Logic Using Code Blocks in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following statements is true about showing/removing the curly braces for code blocks associated with an `if` statement? diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md index 3f503f69e32..f1d60edd59a 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-evaluate-boolean-expressions/ and complete all the tasks for the "Evaluate Boolean Expressions to Make Decisions in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Evaluate Boolean Expressions to Make Decisions in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following lines of code is a valid use of the conditional operator? diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md index f23006f2793..a678783a004 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-develop-conditional-branching-looping/ and complete all the tasks for the "Guided Project - Develop Conditional Branching and Looping Structures in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Develop Conditional Branching and Looping Structures in C# guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- When is it appropriate to use a `switch-case` construct rather than a `if-elseif-else` construct? diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md index 29f7fbe4ca9..d85cd9e79c5 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-for/ and complete all the tasks for the "Iterate Through a Code Block Using the for Statement in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Iterate Through a Code Block Using the `for` Statement in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following `for` statements is correct? diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md index 597a1daa754..b4c34681581 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-if-elseif-else/ and complete all the tasks for the "Add Decision Logic to Your Code Using if, else, and else if statements in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Add Decision Logic to Your Code Using `if`, `else`, and `else if` Statements in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the choices below is not a valid operator in C#? diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md index aeeed01382f..64ee30462ef 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-call-methods/ and complete all the tasks for the "Call Methods From the .NET Class Library Using C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Call Methods from the .NET Class Library Using C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What is an object? diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md index 4124a3e48d0..c19935da753 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/challenge-project-arrays-iteration-selection/ and complete all the tasks for the "Challenge Project - Develop foreach and if-elseif-else Structures to Process Array Data in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Develop `foreach` and `if`-`elseif`-`else` Structures to Process Array Data in C# challenge project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- A developer is working with two other developers to update a collection of applications. The developers will use code comments during the update process. Which of the following describes an appropriate use of code comments? diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md index ff048d90565..221d8229223 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-readable-code/ and complete all the tasks for the "Create Readable Code with Conventions, Whitespace, and Comments in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Create Readable Code with Conventions, Whitespace, and Comments in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following is a bad reason to use a code comment? diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md index 94f87df9df4..af1892b527b 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-arrays-iteration-selection/ and complete all the tasks for the "Guided Project - Develop foreach and if-elseif-else Structures to Process Array Data in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Develop `foreach` and `if`-`elseif`-`else` Structures to Process Array Data in C# guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- A developer writes an application that uses a `foreach` loop to iterate through an array containing 20 elements. After the application is complete, the developer learns that the array must be updated to include 40 elements. The application needs to examine all 40 array elements. Which of the following items describes the required code update? diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md index 293d196cf6f..772087d66a9 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/install-configure-visual-studio-code/ and complete all the tasks for the "Install and Configure Visual Studio Code" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Install and Configure Visual Studio Code module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following choices provides the best description of an Integrated Development Environment (IDE)? diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md index 2e1bc53cae6..33713c19393 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-arrays/ and complete all the tasks for the "Store and Iterate Through Sequences of Data Using Arrays and the foreach Statement in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Store and Iterate Through Sequences of Data Using Arrays and the `foreach` Statement in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following foreach statements is syntactically correct? diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md index 1f9c05bfa10..18794d3b5af 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/challenge-project-create-mini-game/ and complete all the tasks for the "Challenge Project - Create a Mini-Game" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Create a Mini-Game challenge project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- A developer wants to create a method that returns a value in an array. Which of the following options would be a good choice for a method signature? diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md index f30799e881f..01aaf75c313 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/create-c-sharp-methods-return-values/ and complete all the tasks for the "Create C# Methods that Return Values" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Create C# Methods that Return Values module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following options correctly returns a `string` value? diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md index c576ee4c155..44f48d4b8c9 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/create-c-sharp-methods-parameters/ and complete all the tasks for the "Create C# Methods with Parameters" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Create C# Methods with Parameters module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Given the method signature, diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md index aea8d011c19..15877a13f97 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-visit-petting-zoo/ and complete all the tasks for the "Guided Project - Plan a Petting Zoo Visit" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Plan a Petting Zoo Visit guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What is the purpose of defining an optional parameter in a method? diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md index c7bccb05699..7e6313f4a57 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/write-first-c-sharp-method/ and complete all the tasks for the "Write Your First C# Method" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Write Your First C# Method module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following correctly declares a method? diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md index 52415dc17c0..88425acb0d1 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/challenge-project-debug-c-sharp-console-application/ and complete all the tasks for the "Challenge Project - Debug a C# Console Application Using Visual Studio Code" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Debug a C# Console Application Using Visual Studio Code challenge project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following options can be used set a breakpoint in Visual Studio Code? diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md index 3a43bedeeff..82396ebc624 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/create-throw-exceptions-c-sharp/ and complete all the tasks for the "Create and Throw Exceptions in C# Console Applications" module. This is **required** earn to the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Create and Throw Exceptions in C# Console Applications module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- When should a method throw an exception? diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md index c96c6dbf3d0..33d1914183f 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-debug-handle-exceptions-c-sharp-console-application/ and complete all the tasks for the "Guided Project - Debug and Handle Exceptions in a C# Console Application Using Visual Studio Code" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Debug and Handle Exceptions in a C# Console Application Using Visual Studio Code guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- When is an `ArgumentOutOfRangeException` exception thrown? diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md index a437297321d..d77786e00f0 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/implement-exception-handling-c-sharp/ and complete all the tasks for the "Implement Exception Handling in C# Console Applications" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Implement Exception Handling in C# Console Applications module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- When is an `ArrayTypeMismatchException` exception thrown? diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md index cf989a73210..eaf0a57a505 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/implement-visual-studio-code-debugging-tools/ and complete all the tasks for the "Implement the Visual Studio Code Debugging Tools for C#" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Implement the Visual Studio Code Debugging Tools for C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which section of the RUN AND DEBUG view is used to track the current point of execution within the running application? diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md index fb54c916c41..66529f25875 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/review-principles-code-debugging-exception-handling-c-sharp/ and complete all the tasks for the "Review the Principles of Code Debugging and Exception Handling" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Review the Principles of Code Debugging and Exception Handling module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What is the relationship between the type of exception and the information it contains? diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md index 57357fa507f..3283ae458e5 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/challenge-project-work-variable-data-c-sharp/ and complete all the tasks for the "Challenge Project - Work with Variable Data in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Work with Variable Data in C# challenge project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- To sort a string array, why is it important to use the `String.Trim()` method on each array element before sorting? diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md index cfc6e5f6417..90ad0c24ddc 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-choose-data-type/ and complete all the tasks for the "Choose the Correct Data Type in Your C# Code" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Choose the Correct Data Type in Your C# Code module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- A piece of code must store whole numeric values between negative and positive `1,000,000`. Which data type should you choose? diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md index 7e3cccdbf6c..2f81848ec0c 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-convert-cast/ and complete all the tasks for the "Convert Data Types Using Casting and Conversion Techniques in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Convert Data Types Using Casting and Conversion Techniques in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What type of action is being performed when changing a `float` into an `int`? diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md index 25db424abb8..4f13971f084 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-format-strings/ and complete all the tasks for the "Format Alphanumeric Data for Presentation in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Format Alphanumeric Data for Presentation in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- For the C# code `Console.WriteLine("C110".PadLeft(6, '0'));`, which is the expected output? diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md index 41a67d95996..d70b33e0034 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-work-variable-data-c-sharp/ and complete all the tasks for the "Guided Project - Work with Variable Data in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Work with Variable Data in C# guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- For the code `decimal.TryParse(numberString, out myConvert))` when the type of `numberString` is a String. diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md index 7a75db01628..f3193f3dfc2 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-modify-content/ and complete all the tasks for the "Modify the Content of Strings Using Built-In String Data Type Methods in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Modify the Content of Strings Using Built-In String Data Type Methods in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which method finds the next index of either the `-` char, the `=` char, or the `_` char? diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md index f51f67bd1d7..14353de4a63 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-arrays-operations/ and complete all the tasks for the "Perform Operations on Arrays Using Helper Methods in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Perform Operations on Arrays Using Helper Methods in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which method changes the order of items in an `string` array? diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md index 7a7836123bb..131c73af39c 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-calculate-print-student-grades/ and complete all the tasks for the "Guided Project - Calculate and Print Student Grades" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Calculate and Print Student Grades guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What is wrong with the following code? diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md index f4d5d576477..6a5491e8f12 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-calculate-final-gpa/ and complete all the tasks for the "Guided Project - Calculate Final GPA" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Calculate Final GPA guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Suppose `decimal gradePointAverage = 3.99872831m;`. diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md index 09ea0a4fd28..71e056d641f 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-basic-operations/ and complete all the tasks for the "Perform Basic Operations on Numbers in C#" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Perform Basic Operations on Numbers in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What is the value of the following result? diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md index 8fe6df7466b..6a00bd662df 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-basic-formatting/ and complete all the tasks for the "Perform Basic String Formatting in C#" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Perform Basic String Formatting in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following lines of code correctly uses string interpolation assuming that the variable `value` is a string? diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md index 8c1bb0619d3..f229f0d8387 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-literals-variables/ and complete all the tasks for the "Store and Retrieve Data Using Literal and Variable Values in C#" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Store and Retrieve Data Using Literal and Variable Values in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following lines of code creates a variable correctly? diff --git a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md index c2b06ef0c32..e9da470c2a1 100644 --- a/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md +++ b/curriculum/challenges/japanese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-write-first/ and complete all the tasks in the "Write Your First C# Code" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Write Your First C# Code module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What is the difference between `Console.Write` and `Console.WriteLine`? diff --git a/curriculum/challenges/portuguese/16-the-odin-project/top-learn-html-foundations/html-foundations-question-a.md b/curriculum/challenges/portuguese/16-the-odin-project/top-learn-html-foundations/html-foundations-question-a.md index 201b945fe43..c805e815b3e 100644 --- a/curriculum/challenges/portuguese/16-the-odin-project/top-learn-html-foundations/html-foundations-question-a.md +++ b/curriculum/challenges/portuguese/16-the-odin-project/top-learn-html-foundations/html-foundations-question-a.md @@ -26,12 +26,12 @@ O HTML tem uma vasta lista de tags predefinidas que você pode usar para criar t O uso de elementos corretos para o conteúdo é chamado HTML semântico. Você explorará isso com muito mais profundidade mais tarde no currículo. -# --question-- - -## --assignment-- +# --assignment-- Assista ao vídeo de Kevin Powell [Introduction to HTML](https://www.youtube.com/watch?v=LGQuIIv2RVA&list=PL4-IK0AVhVjM0xE0K2uZRvsM7LkIhsPT-) +# --question-- + ## --text-- O que são as tags HTML? diff --git a/curriculum/challenges/portuguese/16-the-odin-project/top-learn-html-foundations/html-foundations-question-e.md b/curriculum/challenges/portuguese/16-the-odin-project/top-learn-html-foundations/html-foundations-question-e.md index eef5732ae23..569517a3553 100644 --- a/curriculum/challenges/portuguese/16-the-odin-project/top-learn-html-foundations/html-foundations-question-e.md +++ b/curriculum/challenges/portuguese/16-the-odin-project/top-learn-html-foundations/html-foundations-question-e.md @@ -11,12 +11,12 @@ O HTML e o CSS são duas linguagens que trabalham em conjunto para criar tudo o Muitos recursos úteis seguem se referindo ao HTML e ao CSS como linguagens de programação. Se quisermos ser técnicos, no entanto, chamá-las assim não é algo preciso. Isso ocorre porque se tratam apenas de apresentar informações. Elas não são usadas para programar a lógica. O JavaScript, que você aprenderá na próxima seção, é uma linguagem de programação, pois é usada para fazer as páginas da web fazerem coisas. No entanto, há muito que você pode fazer apenas com o HTML e o CSS – e você, definitivamente, vai precisar dos dois. As lições a seguir visam dar a você as ferramentas necessárias para que possa seguir com sucesso ao alcançar o conteúdo do JavaScript. -# --question-- - -## --atividade +# --atividade Leia o artigo sobre HTML, CSS e JavaScript (texto em inglês). É uma visão geral rápida das relações entre HTML, CSS e JavaScript. +# --question-- + ## --text-- Qual das seguintes afirmações é verdadeira? @@ -37,5 +37,3 @@ O HTML e o CSS são usados para adicionar estilo a uma página da web, enquanto ## --video-solution-- 2 - - diff --git a/curriculum/challenges/portuguese/16-the-odin-project/top-learn-html-foundations/html-foundations-question-g.md b/curriculum/challenges/portuguese/16-the-odin-project/top-learn-html-foundations/html-foundations-question-g.md index 52d0bea4ca6..7be0782d36e 100644 --- a/curriculum/challenges/portuguese/16-the-odin-project/top-learn-html-foundations/html-foundations-question-g.md +++ b/curriculum/challenges/portuguese/16-the-odin-project/top-learn-html-foundations/html-foundations-question-g.md @@ -12,9 +12,7 @@ O elemento final necessário para completar o boilerplate do HTML é o elemento Para completar o boilerplate, adicione um elemento `body` ao arquivo `index.html`. O elemento `body` também deve ir dentro do elemento `html` e estará sempre abaixo do elemento `head`, assim: -# --question-- - -## --atividade +# --atividade Assista e acompanhe o vídeo de Kevin Powell, Build your first web page. O vídeo está acima. @@ -26,6 +24,8 @@ Desenvolva sua memória muscular excluindo o conteúdo do arquivo `index.html` e Teste seu boilerplate através deste [validador de HTML](https://www.freeformatter.com/html-validator.html). Os validadores garantem que a marcação está correta e são uma excelente ferramenta de aprendizado, pois fornecem feedback sobre erros de sintaxe que você pode estar cometendo de vez em quando sem saber, como deixar de colocar tags de fechamento ou adicionar espaços a mais em seu HTML. +# --question-- + ## --text-- Qual é a finalidade do elemento `body`? diff --git a/curriculum/challenges/portuguese/16-the-odin-project/top-links-and-images/links-and-images-question-a.md b/curriculum/challenges/portuguese/16-the-odin-project/top-links-and-images/links-and-images-question-a.md index 1ce94fb92fe..b24630ef93a 100644 --- a/curriculum/challenges/portuguese/16-the-odin-project/top-links-and-images/links-and-images-question-a.md +++ b/curriculum/challenges/portuguese/16-the-odin-project/top-links-and-images/links-and-images-question-a.md @@ -39,12 +39,12 @@ Por padrão, qualquer texto agregado a uma tag de âncora sem um atributo `href` Vale a pena notar que você pode usar tags de âncora para vincular qualquer tipo de recurso na internet, não apenas outros documentos HTML. Você pode vincular vídeos, arquivos em PDF, imagens e assim por diante. Na maioria das vezes, no entanto, você vinculará a tag a outros documentos HTML. -# --question-- - -## --assignment-- +# --assignment-- Assista ao vídeo de Kevin Powell sobre links do HTML acima. +# --question-- + ## --text-- Qual é a tag do HTML usada para criar um link? diff --git a/curriculum/challenges/portuguese/16-the-odin-project/top-links-and-images/links-and-images-question-d.md b/curriculum/challenges/portuguese/16-the-odin-project/top-links-and-images/links-and-images-question-d.md index 50463f3244d..214757d27c2 100644 --- a/curriculum/challenges/portuguese/16-the-odin-project/top-links-and-images/links-and-images-question-d.md +++ b/curriculum/challenges/portuguese/16-the-odin-project/top-links-and-images/links-and-images-question-d.md @@ -85,12 +85,12 @@ Em muitos casos, isso funcionará muito bem. No entanto, com essa abordagem, ain ``` -# --question-- - -## --assignment-- +# --assignment-- Assista ao vídeo de Kevin Powell sobre a estrutura dos arquivos do HTML acima. +# --question-- + ## --text-- Qual é a diferença entre um link absoluto e um relativo? diff --git a/curriculum/challenges/portuguese/16-the-odin-project/top-links-and-images/links-and-images-question-e.md b/curriculum/challenges/portuguese/16-the-odin-project/top-links-and-images/links-and-images-question-e.md index 02d88e21085..665ed7b7545 100644 --- a/curriculum/challenges/portuguese/16-the-odin-project/top-links-and-images/links-and-images-question-e.md +++ b/curriculum/challenges/portuguese/16-the-odin-project/top-links-and-images/links-and-images-question-e.md @@ -71,12 +71,12 @@ O atributo `alt` é usado para descrever uma imagem. Ele será usado no lugar da É assim que o logotipo do The Odin Project que você usou anteriormente fica com um atributo `alt` incluído: -# --question-- - -## --assignment-- +# --assignment-- Assista ao vídeo de Kevin Powell sobre imagens do HTML acima. +# --question-- + ## --text-- Qual é a tag usada para exibir uma imagem? diff --git a/curriculum/challenges/portuguese/16-the-odin-project/top-links-and-images/links-and-images-question-h.md b/curriculum/challenges/portuguese/16-the-odin-project/top-links-and-images/links-and-images-question-h.md index ad335cec674..33d84ba2e25 100644 --- a/curriculum/challenges/portuguese/16-the-odin-project/top-links-and-images/links-and-images-question-h.md +++ b/curriculum/challenges/portuguese/16-the-odin-project/top-links-and-images/links-and-images-question-h.md @@ -70,12 +70,12 @@ O atributo `alt` é usado para descrever uma imagem. Ele será usado no lugar da É assim que o logotipo do The Odin Project que você usou anteriormente fica com um atributo alt incluído: -# --question-- - -## --assignment-- +# --assignment-- Leia sobre os quatro formatos principais de imagens que podem ser usados na web. +# --question-- + ## --text-- Quais são os quatro formatos principais de imagens que você pode usar na web? diff --git a/curriculum/challenges/portuguese/16-the-odin-project/top-the-box-model/the-box-model-question-a.md b/curriculum/challenges/portuguese/16-the-odin-project/top-the-box-model/the-box-model-question-a.md index 2c8f6b2c768..1f1b13d3140 100644 --- a/curriculum/challenges/portuguese/16-the-odin-project/top-the-box-model/the-box-model-question-a.md +++ b/curriculum/challenges/portuguese/16-the-odin-project/top-the-box-model/the-box-model-question-a.md @@ -13,12 +13,12 @@ Para abrir o inspetor, você pode clicar com o botão direito em qualquer elemen Não se assuste com todas as ferramentas que você verá agora! Para esta lição, nos concentraremos nos painéis Elementos e Estilos. -# --question-- - -## --assignment-- +# --assignment-- Divirta-se um pouco com as ferramentas de desenvolvimento do Chrome e veja se consegue responder à seguinte pergunta. +# --question-- + ## --text-- Em quais painéis você deve se concentrar nas ferramentas de desenvolvimento do Chrome para inspecionar e depurar o HTML e o CSS? diff --git a/curriculum/challenges/portuguese/16-the-odin-project/top-the-box-model/the-box-model-question-c.md b/curriculum/challenges/portuguese/16-the-odin-project/top-the-box-model/the-box-model-question-c.md index 97a442b44ca..3469c56c646 100644 --- a/curriculum/challenges/portuguese/16-the-odin-project/top-the-box-model/the-box-model-question-c.md +++ b/curriculum/challenges/portuguese/16-the-odin-project/top-the-box-model/the-box-model-question-c.md @@ -14,12 +14,12 @@ Quando um elemento é selecionado, a guia Estilos mostrará todos os estilos atu ![Estilo sobrescrito](https://cdn.statically.io/gh/TheOdinProject/curriculum/f8fd38fc62578d8e8368f5303126215a492847f0/foundations/html_css/inspecting-html-and-css/imgs/03.png) -# --question-- - -## --assignment-- +# --assignment-- Divirta-se um pouco com as ferramentas de desenvolvimento do Chrome e veja se consegue responder à seguinte pergunta. +# --question-- + ## --text-- Qual recurso no painel Elementos permite selecionar qualquer elemento em uma página da web, passando o mouse sobre ele? diff --git a/curriculum/challenges/portuguese/16-the-odin-project/top-the-box-model/the-box-model-question-d.md b/curriculum/challenges/portuguese/16-the-odin-project/top-the-box-model/the-box-model-question-d.md index 4b051f21a91..4750c258958 100644 --- a/curriculum/challenges/portuguese/16-the-odin-project/top-the-box-model/the-box-model-question-d.md +++ b/curriculum/challenges/portuguese/16-the-odin-project/top-the-box-model/the-box-model-question-d.md @@ -14,13 +14,12 @@ Quando um elemento é selecionado, a guia Estilos mostrará todos os estilos atu ![Estilo sobrescrito](https://cdn.statically.io/gh/TheOdinProject/curriculum/f8fd38fc62578d8e8368f5303126215a492847f0/foundations/html_css/inspecting-html-and-css/imgs/03.png) - -# --question-- - -## --assignment-- +# --assignment-- Divirta-se um pouco com as ferramentas de desenvolvimento do Chrome e veja se consegue responder à seguinte pergunta. +# --question-- + ## --text-- No painel Estilos, que informação você pode ver sobre um elemento quando ele é selecionado? diff --git a/curriculum/challenges/portuguese/16-the-odin-project/top-the-box-model/the-box-model-question-f.md b/curriculum/challenges/portuguese/16-the-odin-project/top-the-box-model/the-box-model-question-f.md index a7386afc3d2..95973314263 100644 --- a/curriculum/challenges/portuguese/16-the-odin-project/top-the-box-model/the-box-model-question-f.md +++ b/curriculum/challenges/portuguese/16-the-odin-project/top-the-box-model/the-box-model-question-f.md @@ -16,13 +16,12 @@ Cada objeto em uma página é uma caixa retangular. Essas caixas podem ter outra } ``` - -# --question-- - -## --assignment-- +# --assignment-- Adicione uma borda a cada elemento na página e veja como as caixas são traçadas. +# --question-- + ## --text-- Qual é o conceito fundamental em CSS que ajuda você a entender a estrutura de elementos como caixas retangulares? diff --git a/curriculum/challenges/portuguese/16-the-odin-project/top-the-box-model/the-box-model-question-g.md b/curriculum/challenges/portuguese/16-the-odin-project/top-the-box-model/the-box-model-question-g.md index 9a6411f406b..1be5682a437 100644 --- a/curriculum/challenges/portuguese/16-the-odin-project/top-the-box-model/the-box-model-question-g.md +++ b/curriculum/challenges/portuguese/16-the-odin-project/top-the-box-model/the-box-model-question-g.md @@ -20,12 +20,12 @@ Lembre-se de estudar os diagramas cuidadosamente. ![o modelo de caixas](https://cdn.statically.io/gh/TheOdinProject/curriculum/main/foundations/html_css/css-foundations/the-box-model/imgs/box-model.png) -# --question-- - -## --assignment-- +# --assignment-- Adicione uma borda a cada elemento na página e veja como as caixas são traçadas. +# --question-- + ## --text-- De dentro para fora, qual é a ordem das propriedades do modelo de caixas? diff --git a/curriculum/challenges/portuguese/16-the-odin-project/top-working-with-text/working-with-text-question-a.md b/curriculum/challenges/portuguese/16-the-odin-project/top-working-with-text/working-with-text-question-a.md index d0025cd38a7..be0fcb379a3 100644 --- a/curriculum/challenges/portuguese/16-the-odin-project/top-working-with-text/working-with-text-question-a.md +++ b/curriculum/challenges/portuguese/16-the-odin-project/top-working-with-text/working-with-text-question-a.md @@ -32,12 +32,12 @@ Ao mudar nosso exemplo de antes para usar elementos dos parágrafos, corrigimos -# --question-- - -## --atividade +# --atividade Assista o vídeo de Kevin Powell sobre Parágrafos e títulos do HTML acima. +# --question-- + ## --text-- Como se cria um parágrafo em HTML? diff --git a/curriculum/challenges/portuguese/16-the-odin-project/top-working-with-text/working-with-text-question-c.md b/curriculum/challenges/portuguese/16-the-odin-project/top-working-with-text/working-with-text-question-c.md index 201355c5304..45e46c2a2e5 100644 --- a/curriculum/challenges/portuguese/16-the-odin-project/top-working-with-text/working-with-text-question-c.md +++ b/curriculum/challenges/portuguese/16-the-odin-project/top-working-with-text/working-with-text-question-c.md @@ -20,12 +20,12 @@ Você, provavelmente, usará o elemento `strong` muito mais em combinação com Às vezes, você vai querer deixar o texto em negrito sem dar a ele um significado importante. Você aprenderá a fazer isso nas aulas de CSS, mais tarde no currículo. -# --question-- - -## --atividade +# --atividade Assista ao vídeo de Kevin Powell sobre Negrito e Itálico do HTML acima. +# --question-- + ## --text-- Qual elemento você deve usar para deixar o texto em negrito e mostrar que é importante? diff --git a/curriculum/challenges/portuguese/16-the-odin-project/top-working-with-text/working-with-text-question-g.md b/curriculum/challenges/portuguese/16-the-odin-project/top-working-with-text/working-with-text-question-g.md index b02b6da6aa7..188ed5ddfae 100644 --- a/curriculum/challenges/portuguese/16-the-odin-project/top-working-with-text/working-with-text-question-g.md +++ b/curriculum/challenges/portuguese/16-the-odin-project/top-working-with-text/working-with-text-question-g.md @@ -21,12 +21,12 @@ Escrever um comentário em HTML é simples: basta envolver o comentário com as ``` -# --question-- - -## --atividade +# --atividade Para praticar um pouco o trabalho com textos em HTML, crie uma página simples de artigos de blog que use títulos diferentes e parágrafos. Coloque algum texto nos parágrafos em negritos e em itálico. Você pode usar o [Lorem Ipsum](https://loremipsum.io) para gerar texto fictício, no lugar do texto real, enquanto cria seus sites. +# --question-- + ## --text-- Como você cria comentários em HTML? diff --git a/curriculum/challenges/portuguese/16-the-odin-project/top-working-with-text/working-with-text-question-h.md b/curriculum/challenges/portuguese/16-the-odin-project/top-working-with-text/working-with-text-question-h.md index 3ea679425cb..5b44b1365ac 100644 --- a/curriculum/challenges/portuguese/16-the-odin-project/top-working-with-text/working-with-text-question-h.md +++ b/curriculum/challenges/portuguese/16-the-odin-project/top-working-with-text/working-with-text-question-h.md @@ -22,9 +22,7 @@ Listas ordenadas são criadas usando o elemento `
                  `. Cada item individual den -# --question-- - -## --atividade +# --atividade Assista os três primeiros minutos do vídeo de Kevin Powell sobre listas ordenadas e não ordenadas acima. @@ -44,6 +42,8 @@ Faça uma lista não ordenada de lugares que você gostaria de visitar um dia. Faça uma lista ordenada dos seus 5 melhores videogames ou filmes favoritos. +# --question-- + ## --text-- Qual é a tag do HTML usada para criar uma lista não ordenada? diff --git a/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-applications-of-linear-systems/word-problems.md b/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-applications-of-linear-systems/word-problems.md index c540d5820b8..798337b9031 100644 --- a/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-applications-of-linear-systems/word-problems.md +++ b/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-applications-of-linear-systems/word-problems.md @@ -16,9 +16,7 @@ Este primeiro vídeo examinará as palavras-chave que dizem a você qual operaç \- Algebra and Trigonometry, de Jay Abramson -# --question-- - -## --assignment-- +# --assignment-- Resolva os problemas das páginas 63, 75, 85 e 118 do livro "Business Math, a Step-by-Step Handbook (2021)". @@ -26,6 +24,8 @@ Resolva os problemas das páginas 63, 75, 85 e 118 do livro "Business Math, a St Resolva os problemas das páginas 304, 308 e 321 do livro "Algebra and Trigonometry". +# --question-- + ## --text-- Quais das seguintes palavras-chave indicam subtração? diff --git a/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-business-applications-of-college-algebra/demand-and-revenue.md b/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-business-applications-of-college-algebra/demand-and-revenue.md index 1195bfa7c50..6a7bfadd6bc 100644 --- a/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-business-applications-of-college-algebra/demand-and-revenue.md +++ b/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-business-applications-of-college-algebra/demand-and-revenue.md @@ -16,12 +16,12 @@ Aqui está o Business Math, a Step-by-Step Handbook (2021), de Jean-Paul Oliver -# --question-- - -## --assignment-- +# --assignment-- Resolva os problemas das páginas 155 e 163 do livro "Business Math, a Step-by-Step Handbook (2021)". +# --question-- + ## --text-- Qual das seguintes equações de negócio não está correta? diff --git a/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-fractions-and-decimals/converting-fractions-and-decimals.md b/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-fractions-and-decimals/converting-fractions-and-decimals.md index 0d7c9217b79..3ddf7ab06df 100644 --- a/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-fractions-and-decimals/converting-fractions-and-decimals.md +++ b/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-fractions-and-decimals/converting-fractions-and-decimals.md @@ -12,12 +12,12 @@ O primeiro vídeo mostrará a você como converter entre frações, números dec Aqui está o notebook do Colaboratory usado no vídeo. Use esse código como um modelo e escreva seu código para converter frações e números decimais. -# --question-- - -## --assignment-- +# --assignment-- Adicione o código para converter frações e números decimais ao seu notebook do Colaboratory de álgebra. +# --question-- + ## --text-- Qual das seguintes opções representa corretamente "três centésimos" como um número decimal? diff --git a/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-fractions-and-decimals/fractions-and-decimals-extra.md b/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-fractions-and-decimals/fractions-and-decimals-extra.md index 419aa1ea484..117e77c0215 100644 --- a/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-fractions-and-decimals/fractions-and-decimals-extra.md +++ b/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-fractions-and-decimals/fractions-and-decimals-extra.md @@ -12,9 +12,7 @@ O vídeo a seguir mostrará a você uma maneira de configurar o notebook do Goog Aqui está o notebook do Colaboratory usado neste vídeo para que você possa usá-lo como modelo. -# --question-- - -## --assignment-- +# --assignment-- Adicione o código para fatorar e resolva para uma variável em seu notebook de álgebra do Colaboratory. @@ -22,6 +20,8 @@ Adicione o código para fatorar e resolva para uma variável em seu notebook de Execute o código do notebook para praticar a conversão de frações em decimais. Além disso, observe o código usado para gerar os problemas práticos. +# --question-- + ## --text-- Qual das linguagens a seguir você não pode usar no Google Colaboratory? diff --git a/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-functions-and-graphing/functions-and-graphing-extra.md b/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-functions-and-graphing/functions-and-graphing-extra.md index 06253381eec..c960e86c4a4 100644 --- a/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-functions-and-graphing/functions-and-graphing-extra.md +++ b/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-functions-and-graphing/functions-and-graphing-extra.md @@ -12,12 +12,12 @@ Este próximo vídeo mostrará a você a conexão entre funções e gráficos. O Aqui está o notebook do Colaboratory que acompanha este vídeo. -# --question-- - -## --assignment-- +# --assignment-- Adicione código ao seu notebook do Colaboratory de álgebra para funções e gráficos. +# --question-- + ## --text-- Qual biblioteca do Python você importaria para criar arrays que você pode colocar em gráficos? diff --git a/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-functions-and-graphing/functions.md b/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-functions-and-graphing/functions.md index dd89517a9b2..8a90a3e94db 100644 --- a/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-functions-and-graphing/functions.md +++ b/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-functions-and-graphing/functions.md @@ -12,12 +12,12 @@ Este primeiro vídeo mostrará a você o que significa uma função. Ele mostrar Aqui está o notebook do Colaboratory usado neste e nos próximos vídeos. -# --question-- - -## --assignment-- +# --assignment-- Adicione código ao notebook de álgebra do Colaboratory que cria funções do Python para conversões entre decimais e frações +# --question-- + ## --text-- Após definir uma função em Python, quantos espaços você usará para indentar cada linha da função? diff --git a/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-functions-and-graphing/graphing.md b/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-functions-and-graphing/graphing.md index 440dea48fe8..0123a076f1c 100644 --- a/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-functions-and-graphing/graphing.md +++ b/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-functions-and-graphing/graphing.md @@ -12,9 +12,7 @@ Este próximo vídeo vai mostrar para você a conexão entre funções e gráfic Aqui está o notebook do Colaboratory que acompanha os dois últimos vídeos para que você possa começar a criar seus próprios gráficos. -# --question-- - -## --assignment-- +# --assignment-- Adicione código ao seu notebook do Colaboratory de álgebra para funções e gráficos. @@ -22,6 +20,8 @@ Adicione código ao seu notebook do Colaboratory de álgebra para funções e gr Execute o notebook a sefguir para ver mais maneiras de criar gráficos usando álgebra e Python. +# --question-- + ## --text-- Qual das seguintes opções colocaria uma linha azul em um gráfico? diff --git a/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-how-to-graph-systems-of-equations/graphing-systems.md b/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-how-to-graph-systems-of-equations/graphing-systems.md index 482c2358406..43a654cf2d5 100644 --- a/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-how-to-graph-systems-of-equations/graphing-systems.md +++ b/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-how-to-graph-systems-of-equations/graphing-systems.md @@ -12,12 +12,12 @@ Este primeiro vídeo mostrará a você como representar graficamente sistemas de Aqui está o notebook do Colaboratory usado neste vídeo. -# --question-- - -## --assignment-- +# --assignment-- Adicione o código do vídeo ao notebook de álgebra que você está criando e teste o código com diferentes funções. +# --question-- + ## --text-- A função `linspace()` do numpy recebe três argumentos para criar um array. Qual dos argumentos abaixo não faz parte deles? diff --git a/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-how-to-solve-for-x/how-to-solve-for-x-extra.md b/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-how-to-solve-for-x/how-to-solve-for-x-extra.md index d3e45afbc8c..fc8adbd28c2 100644 --- a/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-how-to-solve-for-x/how-to-solve-for-x-extra.md +++ b/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-how-to-solve-for-x/how-to-solve-for-x-extra.md @@ -12,9 +12,7 @@ Este vídeo entrará em mais detalhes, dando exemplos de como usar a solução d Aqui está o notebook do Colaboratory que acompanha este vídeo. Adicione-o ao notebook do Colaboratory de álgebra que você está criando. -# --question-- - -## --assignment-- +# --assignment-- Adicione o código para outras formas de resolver para x do vídeo ao seu notebook do Colaboratory de álgebra. @@ -22,6 +20,8 @@ Adicione o código para outras formas de resolver para x do vídeo ao seu notebo Abra o notebook do Colaboratory a seguir, execute a célula e pratique a resolução de problemas de álgebra de uma e de duas etapas. Como bônus, veja o código que gera os problemas da prática. +# --question-- + ## --text-- Se você importar o SymPy e definir x como uma variável, qual seria a saída do seguinte código? diff --git a/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-how-to-solve-for-x/solving-for-x.md b/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-how-to-solve-for-x/solving-for-x.md index 7c296fea372..c74df2dde1e 100644 --- a/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-how-to-solve-for-x/solving-for-x.md +++ b/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-how-to-solve-for-x/solving-for-x.md @@ -12,12 +12,12 @@ Este primeiro vídeo mostrará a essência da álgebra e, em seguida, como o có Aqui está o notebook do Colaboratory que acompanha este vídeo. Adicione o código do vídeo ao notebook do Colaboratory de álgebra para ver como resolver para X usando o Python. Em seguida, mude o código se você quiser, teste-o e compare-o à resolução com lápis e papel. Lembre-se de que a entrada da equação precisa estar na sintaxe do Python. -# --question-- - -## --assignment-- +# --assignment-- Adicione o código para resolver para x do vídeo ao seu notebook do Colaboratory de álgebra. +# --question-- + ## --text-- Em Python, qual é a biblioteca que você importa para resolver problemas de álgebra com variáveis? diff --git a/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-how-to-solve-systems-of-equations/solving-systems.md b/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-how-to-solve-systems-of-equations/solving-systems.md index d48bcd64a9e..acae6ce8a44 100644 --- a/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-how-to-solve-systems-of-equations/solving-systems.md +++ b/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-how-to-solve-systems-of-equations/solving-systems.md @@ -12,12 +12,12 @@ O primeiro vídeo mostrará a matemática por trás da resolução de um sistema Aqui está o notebook do Colaboratory usado neste vídeo. -# --question-- - -## --assignment-- +# --assignment-- Adicione o código ao notebook para resolver e criar os gráficos dos sistemas de equações +# --question-- + ## --text-- Qual das seguintes opções o SymPy consegue fazer e o matplotlib não consegue? diff --git a/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-linear-functions/linear-equations.md b/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-linear-functions/linear-equations.md index a27b132f14b..e8f206834e7 100644 --- a/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-linear-functions/linear-equations.md +++ b/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-linear-functions/linear-equations.md @@ -12,12 +12,12 @@ Este vídeo mostrará a matemática por trás do cálculo da interceptação do Aqui está o notebook do Colaboratory que acompanha os dois últimos vídeos para que você possa ver as fórmulas. -# --question-- - -## --assignment-- +# --assignment-- Adicione código ao seu notebook do Colaboratory de álgebra para representar graficamente uma função a partir de pontos ou de entradas na equação. +# --question-- + ## --text-- Se você souber o coeficiente angular ("m") e se tiver um ponto de coordenadas (x, y), qual das seguintes equações você poderia usar para encontrar "b", representando o ponto de interceptação do eixo y em Python? diff --git a/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-ratios-and-proportions/introduction-to-college-algebra-with-python.md b/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-ratios-and-proportions/introduction-to-college-algebra-with-python.md index 20ddc8f477a..a9c2f309b2f 100644 --- a/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-ratios-and-proportions/introduction-to-college-algebra-with-python.md +++ b/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-ratios-and-proportions/introduction-to-college-algebra-with-python.md @@ -16,12 +16,12 @@ Este primeiro vídeo inclui uma introdução ao curso, como ele vai funcionar e \- Algebra and Trigonometry, de Jay Abramson -# --question-- - -## --assignment-- +# --assignment-- Crie um notebook do Colaboratory de álgebra no seu Google Drive para que você possa acompanhar os vídeos. +# --question-- + ## --text-- Ao adicionar texto no Google Colaboratory, qual símbolo você usaria para criar um título que aparecerá no sumário? diff --git a/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-ratios-and-proportions/ratios-and-proportions-extra.md b/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-ratios-and-proportions/ratios-and-proportions-extra.md index f12713575bf..d5c5e9b5cc0 100644 --- a/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-ratios-and-proportions/ratios-and-proportions-extra.md +++ b/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-ratios-and-proportions/ratios-and-proportions-extra.md @@ -10,12 +10,12 @@ dashedName: ratios-and-proportions-extra O último vídeo nesta seção vai mostrar para você como usar proporções em outras aplicações, como taxas de câmbio e conversão de unidades. Ele também mostrará mais sobre a configuração de seu notebook e sobre como realizar as tarefas práticas. -# --question-- - -## --assignment-- +# --assignment-- Abra o notebook do Colaboratory a seguir, execute a célula e pratique a resolução de problemas de álgebra de uma etapa. Como bônus, veja o código que gera os problemas da prática. +# --question-- + ## --text-- Que outra maneira temos de escrever 0.9999... (9s repetidos)? diff --git a/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-ratios-and-proportions/solving-proportions.md b/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-ratios-and-proportions/solving-proportions.md index 33495a51862..312795e1196 100644 --- a/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-ratios-and-proportions/solving-proportions.md +++ b/curriculum/challenges/portuguese/17-college-algebra-with-python/learn-ratios-and-proportions/solving-proportions.md @@ -12,12 +12,12 @@ Passemos, agora, ao conteúdo da matemática. Este vídeo mostrará como configu Aqui está o notebook do Colaboratory que acompanha este vídeo. Se você ainda não fez isso, configure seu notebook do Colaboratory de álgebra do vídeo passado. Em seguida, adicione o código deste vídeo a ele. -# --question-- - -## --assignment-- +# --assignment-- Adicione o código do vídeo ao notebook do Colaboratory de álgebra que você criou no primeiro passo. +# --question-- + ## --text-- Ao resolver uma proporção, se um numerador for zero, o outro numerador precisa ser zero para que a instrução seja verdadeira? diff --git a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md index 0201edab9e2..e5cf12d157e 100644 --- a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md +++ b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md @@ -12,12 +12,12 @@ Este desafio será parcialmente concluído na plataforma Microsoft Learn. Siga e 1. Acesse https://learn.microsoft.com/training/modules/csharp-do-while/ e complete todas as tarefas do módulo "Adicione lógica de repetição ao seu código usando instruções do-while e while em C#". Isso é **necessário** para conquistar o troféu "Adicione lógica a aplicações de console do C#" da Microsoft Learn e para se qualificar para o exame de certificação. 1. Quando terminar, volte e responda corretamente à pergunta abaixo. -# --question-- - -## --assignment-- +# --assignment-- Complete o módulo Adicione lógica de repetição ao seu código usando instruções `do`-`while` e `while` em C# no Microsoft Learn. Em seguida, responda a pergunta abaixo. +# --question-- + ## --text-- Um desenvolvedor precisa iterar através de um array de itens para encontrar um que corresponda a um determinado critério. Qual é a melhor instrução de iteração para esta finalidade? diff --git a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md index 6ad8e4118e0..2e04b26fdb8 100644 --- a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md +++ b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md @@ -12,12 +12,12 @@ Este desafio será parcialmente concluído na plataforma Microsoft Learn. Siga e 1. Acesse https://learn.microsoft.com/training/modules/csharp-switch-case/ e complete todas as tarefas do módulo "Faça a ramificação do fluxo de código usando a construção de switch-case em C#". Isso é **necessário** para conquistar o troféu "Adicione lógica a aplicações de console do C#" da Microsoft Learn e para se qualificar para o exame de certificação. 1. Quando terminar, volte e responda corretamente à pergunta abaixo. -# --question-- - -## --assignment-- +# --assignment-- Complete o módulo Faça a ramificação do fluxo de código usando a construção de `switch`-`case` em C# no Microsoft Learn. Em seguida, responda a pergunta abaixo. +# --question-- + ## --text-- Qual é a finalidade do elemento `break`? diff --git a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md index 9707dee3553..a7ac9cbee9c 100644 --- a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md +++ b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md @@ -12,12 +12,12 @@ Este desafio será parcialmente concluído na plataforma Microsoft Learn. Siga e 1. Acesse https://learn.microsoft.com/training/modules/challenge-project-develop-branching-looping-structures-c-sharp/ e complete todas as tarefas do módulo "Projeto de desafio – desenvolver estruturas de ramificação e de repetição em C#". Isso é **necessário** para conquistar o troféu "Adicione lógica a aplicações de console do C#" da Microsoft Learn e para se qualificar para o exame de certificação. 1. Quando terminar, volte e responda corretamente à pergunta abaixo. -# --question-- - -## --assignment-- +# --assignment-- Complete o projeto de desafio Desenvolver estruturas de ramificação e de repetição em C# no Microsoft Learn. Em seguida, responda a pergunta abaixo. +# --question-- + ## --text-- Um desenvolvedor precisa criar uma instrução de iteração. Sob qual condição a instrução `while` é uma escolha melhor do que a instrução `do`? diff --git a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md index 2b5df3b74f3..c885157a29c 100644 --- a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md +++ b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md @@ -12,12 +12,12 @@ Este desafio será parcialmente concluído na plataforma Microsoft Learn. Siga e 1. Acesse https://learn.microsoft.com/training/modules/csharp-code-blocks/ e complete todas as tarefas do módulo "Controle o escopo de variáveis e a lógica usando blocos de código em C#". Isso é **necessário** para conquistar o troféu "Adicione lógica a aplicações de console do C#" da Microsoft Learn e para se qualificar para o exame de certificação. 1. Quando terminar, volte e responda corretamente à pergunta abaixo. -# --question-- - -## --assignment-- +# --assignment-- Complete o módulo Controle o escopo de variáveis e a lógica usando blocos de código em C# no Microsoft Learn. Em seguida, responda a pergunta abaixo. +# --question-- + ## --text-- Qual das afirmações a seguir é verdadeira sobre exibir/remover chaves para blocos de código associados a uma instrução `if`? diff --git a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md index e75cf296b6f..9655ea55b9f 100644 --- a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md +++ b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md @@ -12,12 +12,12 @@ Este desafio será parcialmente concluído na plataforma Microsoft Learn. Siga e 1. Acesse https://learn.microsoft.com/training/modules/csharp-evaluate-boolean-expressions/ e complete todas as tarefas do módulo "Avaliar expressões booleanas para a tomada de decisões em C#". Isso é **necessário** para conquistar o troféu "Adicione lógica a aplicações de console do C#" da Microsoft Learn e para se qualificar para o exame de certificação. 1. Quando terminar, volte e responda corretamente à pergunta abaixo. -# --question-- - -## --assignment-- +# --assignment-- Complete o módulo Avaliar expressões booleanas para a tomada de decisões em C# no Microsoft Learn. Em seguida, responda a pergunta abaixo. +# --question-- + ## --text-- Qual das linhas de código abaixo é um uso válido do operador condicional? diff --git a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md index cec97255af4..1e96c99a56c 100644 --- a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md +++ b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md @@ -12,12 +12,12 @@ Este desafio será parcialmente concluído na plataforma Microsoft Learn. Siga e 1. Acesse https://learn.microsoft.com/training/modules/guided-project-develop-conditional-branching-looping/ e complete todas as tarefas do módulo "Projeto guiado – desenvolver estruturas de ramificação condicional e de repetição em C#". Isso é **necessário** para conquistar o troféu "Adicione lógica a aplicações de console do C#" da Microsoft Learn e para se qualificar para o exame de certificação. 1. Quando terminar, volte e responda corretamente à pergunta abaixo. -# --question-- - -## --assignment-- +# --assignment-- Complete o projeto guiado Desenvolver estruturas de ramificação condicional e de repetição em C# no Microsoft Learn. Em seguida, responda a pergunta abaixo. +# --question-- + ## --text-- Quando é apropriado usar um bloco `switch-case` ao invés de um bloco `if-elseif-else`? diff --git a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md index ebd700af923..29c2342113b 100644 --- a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md +++ b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md @@ -12,12 +12,12 @@ Este desafio será parcialmente concluído na plataforma Microsoft Learn. Siga e 1. Acesse https://learn.microsoft.com/training/modules/csharp-for/ e complete todas as tarefas do módulo "Percorra um bloco de código usando a instrução for em C#". Isso é **necessário** para conquistar o troféu "Adicione lógica a aplicações de console do C#" da Microsoft Learn e para se qualificar para o exame de certificação. 1. Quando terminar, volte e responda corretamente à pergunta abaixo. -# --question-- - -## --assignment-- +# --assignment-- Complete o módulo Percorra um bloco de código usando a instrução `for` em C# no Microsoft Learn. Em seguida, responda a pergunta abaixo. +# --question-- + ## --text-- Qual das seguintes instruções `for` está correta? diff --git a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md index f987940a831..93a2002e2b2 100644 --- a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md +++ b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md @@ -12,12 +12,12 @@ Este desafio será parcialmente concluído na plataforma Microsoft Learn. Siga e 1. Acesse https://learn.microsoft.com/training/modules/csharp-if-elseif-else/ e complete todas as tarefas do módulo "Adicione lógica de decisão ao seu código usando instruções if, else e else if em C#". Isso é **necessário** para conquistar o troféu "Crie e execute aplicações de console simples em C#" da Microsoft Learn e para se qualificar para o exame de certificação. 1. Quando terminar, volte e responda corretamente à pergunta abaixo. -# --question-- - -## --assignment-- +# --assignment-- Complete o módulo Adicione lógica de decisão ao seu código usando instruções `if`, `else` e `else if` em C# no Microsoft Learn. Em seguida, responda a pergunta abaixo. +# --question-- + ## --text-- Qual das opções abaixo não é um operador válido em C#? diff --git a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md index 3ff0b820383..230fa169cb2 100644 --- a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md +++ b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md @@ -12,12 +12,12 @@ Este desafio será parcialmente concluído na plataforma Microsoft Learn. Siga e 1. Acesse https://learn.microsoft.com/training/modules/csharp-call-methods/ e complete todas as tarefas do módulo "Chame métodos da biblioteca de classes .NET com o C#". Isso é **necessário** para conquistar o troféu "Crie e execute aplicações de console simples em C#" da Microsoft Learn e para se qualificar para o exame de certificação. 1. Quando terminar, volte e responda corretamente à pergunta abaixo. -# --question-- - -## --assignment-- +# --assignment-- Complete o módulo Chame métodos da biblioteca de classes .NET com o C# no Microsoft Learn. Em seguida, responda a pergunta abaixo. +# --question-- + ## --text-- O que é um objeto? diff --git a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md index cbc4bea683c..1568fd9e547 100644 --- a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md +++ b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md @@ -12,12 +12,12 @@ Este desafio será parcialmente concluído na plataforma Microsoft Learn. Siga e 1. Acesse https://learn.microsoft.com/training/modules/challenge-project-arrays-iteration-selection/ e complete todas as tarefas do módulo "Projeto de desafio – desenvolva estruturas foreach e if-elseif-else para processar dados de arrays em C#". Isso é **necessário** para conquistar o troféu "Crie e execute aplicações de console simples em C#" da Microsoft Learn e para se qualificar para o exame de certificação. 1. Quando terminar, volte e responda corretamente à pergunta abaixo. -# --question-- - -## --assignment-- +# --assignment-- Complete o projeto de desafio Desenvolva estruturas `foreach` e `if`-`elseif`-`else` para processar dados de arrays em C# no Microsoft Learn. Em seguida, responda a pergunta abaixo. +# --question-- + ## --text-- Um desenvolvedor está trabalhando com dois outros desenvolvedores para atualizar uma coleção de aplicações. Os desenvolvedores usarão comentários de código durante o processo de atualização. Qual das seguintes opções descreve um uso apropriado de comentários de código? diff --git a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md index 738fa6032d4..9b43e42e9f7 100644 --- a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md +++ b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md @@ -12,12 +12,12 @@ Este desafio será parcialmente concluído na plataforma Microsoft Learn. Siga e 1. Acesse https://learn.microsoft.com/training/modules/csharp-readable-code/ e complete todas as tarefas do módulo "Crie um código legível com convenções, espaços em branco e comentários em C#". Isso é **necessário** para conquistar o troféu "Crie e execute aplicações de console simples em C#" da Microsoft Learn e para se qualificar para o exame de certificação. 1. Quando terminar, volte e responda corretamente à pergunta abaixo. -# --question-- - -## --assignment-- +# --assignment-- Complete o módulo Crie um código legível com convenções, espaços em branco e comentários em C# no Microsoft Learn. Em seguida, responda a pergunta abaixo. +# --question-- + ## --text-- Qual das seguintes opções é uma razão inadequada para se usar um comentário de código? diff --git a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md index 4a941e2f9d0..b3985d6d56d 100644 --- a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md +++ b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md @@ -12,12 +12,12 @@ Este desafio será parcialmente concluído na plataforma Microsoft Learn. Siga e 1. Acesse https://learn.microsoft.com/training/modules/guided-project-arrays-iteration-selection/ e complete todas as tarefas do módulo "Projeto guiado – desenvolva estruturas foreach e if-elseif-else para processar dados de arrays em C#". Isso é **necessário** para conquistar o troféu "Crie e execute aplicações de console simples em C#" da Microsoft Learn e para se qualificar para o exame de certificação. 1. Quando terminar, volte e responda corretamente à pergunta abaixo. -# --question-- - -## --assignment-- +# --assignment-- Complete o projeto de desafio Desenvolva estruturas `foreach` e `if-elseif-else` para processar dados de arrays em C# no Microsoft Learn. Em seguida, responda a pergunta abaixo. +# --question-- + ## --text-- Um desenvolvedor escreve uma aplicação que usa um laço `foreach` para iterar através de um array contendo 20 elementos. Após a conclusão da aplicação, o desenvolvedor descobre que o array deve ser atualizado para incluir 40 elementos. A aplicação precisa examinar todos os 40 elementos do array. Quais dos itens a seguir descreve o código de atualização necessário? diff --git a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md index 03599dd4d7a..9f839d725fe 100644 --- a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md +++ b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md @@ -12,12 +12,12 @@ Este desafio será parcialmente concluído na plataforma Microsoft Learn. Siga e 1. Acesse https://learn.microsoft.com/training/modules/install-configure-visual-studio-code/ e complete todas as tarefas do módulo "Instale e configure o Visual Studio Code". Isso é **necessário** para conquistar o troféu "Crie e execute aplicações de console simples em C#" da Microsoft Learn e para se qualificar para o exame de certificação. 1. Quando terminar, volte e responda corretamente à pergunta abaixo. -# --question-- - -## --assignment-- +# --assignment-- Complete o módulo Instale e configure o Visual Studio Code no Microsoft Learn. Em seguida, responda a pergunta abaixo. +# --question-- + ## --text-- Qual das seguintes opções oferece a melhor descrição de um Ambiente Integrado de Desenvolvimento (IDE)? diff --git a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md index 551d147f2cb..21528181325 100644 --- a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md +++ b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md @@ -12,12 +12,12 @@ Este desafio será parcialmente concluído na plataforma Microsoft Learn. Siga e 1. Acesse https://learn.microsoft.com/training/modules/csharp-arrays/ e complete todas as tarefas do módulo "Armazene e percorra sequências de dados usando arrays e a instrução foreach em C#". Isso é **necessário** para conquistar o troféu "Crie e execute aplicações de console simples em C#" da Microsoft Learn e para se qualificar para o exame de certificação. 1. Quando terminar, volte e responda corretamente à pergunta abaixo. -# --question-- - -## --assignment-- +# --assignment-- Complete o módulo Armazene e percorra sequências de dados usando arrays e a instrução `foreach` em C# no Microsoft Learn. Em seguida, responda a pergunta abaixo. +# --question-- + ## --text-- Qual das seguintes instruções foreach está sintaticamente correta? diff --git a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md index 46da710f53f..2cfe9b8b973 100644 --- a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md +++ b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md @@ -12,12 +12,12 @@ Este desafio será parcialmente concluído na plataforma Microsoft Learn. Siga e 1. Acesse https://learn.microsoft.com/training/modules/challenge-project-create-mini-game/ e complete todas as tarefas do módulo "Projeto de desafio – criar um minigame". Isso é **necessário** para conquistar o troféu "Crie métodos em aplicações de console do C#" da Microsoft Learn e para se qualificar para o exame de certificação. 1. Quando terminar, volte e responda corretamente à pergunta abaixo. -# --question-- - -## --assignment-- +# --assignment-- Complete o projeto de desafio Criar um minigame no Microsoft Learn. Em seguida, responda a pergunta abaixo. +# --question-- + ## --text-- Um desenvolvedor quer criar um método que retorne um valor em um array. Qual das opções abaixo seria uma boa escolha para uma assinatura de método? diff --git a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md index 690f2928d95..caf33d923d2 100644 --- a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md +++ b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md @@ -12,12 +12,12 @@ Este desafio será parcialmente concluído na plataforma Microsoft Learn. Siga e 1. Acesse https://learn.microsoft.com/training/modules/create-c-sharp-methods-return-values/ e complete todas as tarefas do módulo "Crie métodos em C# que retornem valores". Isso é **necessário** para conquistar o troféu "Crie métodos em aplicações de console do C#" da Microsoft Learn e para se qualificar para o exame de certificação. 1. Quando terminar, volte e responda corretamente à pergunta abaixo. -# --question-- - -## --assignment-- +# --assignment-- Complete o módulo Crie métodos em C# que retornem valores no Microsoft Learn. Em seguida, responda a pergunta abaixo. +# --question-- + ## --text-- Qual das opções a seguir retorna corretamente um valor do tipo `string`? diff --git a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md index cf24f3368bc..d54dbf308a7 100644 --- a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md +++ b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md @@ -12,12 +12,12 @@ Este desafio será parcialmente concluído na plataforma Microsoft Learn. Siga e 1. Acesse https://learn.microsoft.com/training/modules/create-c-sharp-methods-parameters/ e complete todas as tarefas do módulo "Crie métodos com parâmetros em C#". Isso é **necessário** para conquistar o troféu "Crie métodos em aplicações de console do C#" da Microsoft Learn e para se qualificar para o exame de certificação. 1. Quando terminar, volte e responda corretamente à pergunta abaixo. -# --question-- - -## --assignment-- +# --assignment-- Complete o módulo Crie métodos em C# com parâmetros no Microsoft Learn. Em seguida, responda a pergunta abaixo. +# --question-- + ## --text-- Dada a assinatura do método, diff --git a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md index 6673801223b..31b9da22199 100644 --- a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md +++ b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md @@ -12,12 +12,12 @@ Este desafio será parcialmente concluído na plataforma Microsoft Learn. Siga e 1. Acesse https://learn.microsoft.com/training/modules/guided-project-visit-petting-zoo/ e complete todas as tarefas do módulo "Projeto guiado – planeje uma visita ao minizoológico". Isso é **necessário** para conquistar o troféu "Crie métodos em aplicações de console do C#" da Microsoft Learn e para se qualificar para o exame de certificação. 1. Quando terminar, volte e responda corretamente à pergunta abaixo. -# --question-- - -## --assignment-- +# --assignment-- Complete o projeto guiado Planeje uma visita ao minizoológico no Microsoft Learn. Em seguida, responda a pergunta abaixo. +# --question-- + ## --text-- Qual é a finalidade de definir um parâmetro opcional em um método? diff --git a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md index 47a96326b1b..6b60a746427 100644 --- a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md +++ b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md @@ -12,12 +12,12 @@ Este desafio será parcialmente concluído na plataforma Microsoft Learn. Siga e 1. Acesse https://learn.microsoft.com/training/modules/write-first-c-sharp-method/ e complete todas as tarefas do módulo "Escreva seu primeiro método em C#". Isso é **necessário** para conquistar o troféu "Crie métodos em aplicações de console do C#" da Microsoft Learn e para se qualificar para o exame de certificação. 1. Quando terminar, volte e responda corretamente à pergunta abaixo. -# --question-- - -## --assignment-- +# --assignment-- Complete o módulo Escreva seu primeiro método em C# no Microsoft Learn. Em seguida, responda a pergunta abaixo. +# --question-- + ## --text-- Qual das opções abaixo declara corretamente um método? diff --git a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md index 347364db7b4..f5155216ce3 100644 --- a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md +++ b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md @@ -12,12 +12,12 @@ Este desafio será parcialmente concluído na plataforma Microsoft Learn. Siga e 1. Acesse https://learn.microsoft.com/training/modules/challenge-project-debug-c-sharp-console-application/ e complete todas as tarefas do módulo "Projeto de desafio – depurar uma aplicação de console em C# usando o Visual Studio Code". Isso é **necessário** para conquistar o troféu "Depure aplicações de console do C#" da Microsoft Learn e para se qualificar para o exame de certificação. 1. Quando terminar, volte e responda corretamente à pergunta abaixo. -# --question-- - -## --assignment-- +# --assignment-- Complete o projeto de desafio Depurar uma aplicação de console em C# usando o Visual Studio Code no Microsoft Learn. Em seguida, responda a pergunta abaixo. +# --question-- + ## --text-- Qual das seguintes opções pode ser usada para definir um ponto de interrupção no Visual Studio Code? diff --git a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md index 44c3c2f5e33..d57cf7c3ded 100644 --- a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md +++ b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md @@ -12,12 +12,12 @@ Este desafio será parcialmente concluído na plataforma Microsoft Learn. Siga e 1. Acesse https://learn.microsoft.com/training/modules/create-throw-exceptions-c-sharp/ e complete todas as tarefas do módulo "Crie e lance exceções em aplicações de console em C#". Isso é **necessário** para conquistar o troféu "Depure aplicações de console do C#" da Microsoft Learn e para se qualificar para o exame de certificação. 1. Quando terminar, volte e responda corretamente à pergunta abaixo. -# --question-- - -## --assignment-- +# --assignment-- Complete o módulo Crie e lance exceções em aplicações de console em C# no Microsoft Learn. Em seguida, responda a pergunta abaixo. +# --question-- + ## --text-- Quando um método deve lançar uma exceção? diff --git a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md index 3717aadfd57..733cd1f7238 100644 --- a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md +++ b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md @@ -12,12 +12,12 @@ Este desafio será parcialmente concluído na plataforma Microsoft Learn. Siga e 1. Acesse https://learn.microsoft.com/training/modules/guided-project-debug-handle-exceptions-c-sharp-console-application/ e complete todas as tarefas para o "Projeto guiado – depurar e tratar de exceções em uma aplicação de console em C# usando o Visual Studio Code". Isso é **necessário** para conquistar o troféu "Depure aplicações de console do C#" da Microsoft Learn e para se qualificar para o exame de certificação. 1. Quando terminar, volte e responda corretamente à pergunta abaixo. -# --question-- - -## --assignment-- +# --assignment-- Complete o projeto de desafio Depurar e tratar de exceções em uma aplicação de console em C# usando o Visual Studio Code no Microsoft Learn. Em seguida, responda a pergunta abaixo. +# --question-- + ## --text-- Quando é lançada uma exceção do tipo `ArgumentOutOfRangeException`? diff --git a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md index 4835e533b2d..8f3b08e130d 100644 --- a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md +++ b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md @@ -12,12 +12,12 @@ Este desafio será parcialmente concluído na plataforma Microsoft Learn. Siga e 1. Acesse https://learn.microsoft.com/training/modules/implement-exception-handling-c-sharp/ e complete todas as tarefas do módulo "Implemente o tratamento de exceções em aplicações de console em C#". Isso é **necessário** para conquistar o troféu "Depure aplicações de console do C#" da Microsoft Learn e para se qualificar para o exame de certificação. 1. Quando terminar, volte e responda corretamente à pergunta abaixo. -# --question-- - -## --assignment-- +# --assignment-- Complete o módulo Implemente o tratamento de exceções em aplicações de console em C# no Microsoft Learn. Em seguida, responda a pergunta abaixo. +# --question-- + ## --text-- Quando é lançada uma exceção do tipo `ArrayTypeMismatchException`? diff --git a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md index a40aa83cb44..3cbf9fa71a5 100644 --- a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md +++ b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md @@ -12,12 +12,12 @@ Este desafio será parcialmente concluído na plataforma Microsoft Learn. Siga e 1. Acesse https://learn.microsoft.com/training/modules/implement-visual-studio-code-debugging-tools/ e complete todas as tarefas do módulo "Implementar as ferramentas de depuração do Visual Studio Code para o C#". Isso é **necessário** para conquistar o troféu "Depure aplicações de console do C#" da Microsoft Learn e para se qualificar para o exame de certificação. 1. Quando terminar, volte e responda corretamente à pergunta abaixo. -# --question-- - -## --assignment-- +# --assignment-- Complete o módulo Implemente as ferramentas de depuração do Visual Studio Code para o C# no Microsoft Learn. Em seguida, responda a pergunta abaixo. +# --question-- + ## --text-- Qual seção da visão de EXECUTAR E DEPURAR é usada para rastrear o ponto de execução atual dentro da aplicação em execução? diff --git a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md index 34aa6a5cc00..11788fc20c8 100644 --- a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md +++ b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md @@ -12,12 +12,12 @@ Este desafio será parcialmente concluído na plataforma Microsoft Learn. Siga e 1. Acesse https://learn.microsoft.com/training/modules/review-principles-code-debugging-exception-handling-c-sharp/ e complete todas as tarefas do módulo "Revise os princípios de depuração de código e tratamento de exceções". Isso é **necessário** para conquistar o troféu "Depure aplicações de console do C#" da Microsoft Learn e para se qualificar para o exame de certificação. 1. Quando terminar, volte e responda corretamente à pergunta abaixo. -# --question-- - -## --assignment-- +# --assignment-- Complete o módulo Revise os princípios de depuração de código e tratamento de exceções no Microsoft Learn. Em seguida, responda a pergunta abaixo. +# --question-- + ## --text-- Qual é a relação entre o tipo de exceção e a informação que ele contém? diff --git a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md index c1bf01d7e42..53265f4d954 100644 --- a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md +++ b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md @@ -12,12 +12,12 @@ Este desafio será parcialmente concluído na plataforma Microsoft Learn. Siga e 1. Acesse https://learn.microsoft.com/training/modules/challenge-project-work-variable-data-c-sharp/ e complete todas as tarefas do módulo "Projeto de desafio – trabalhe com dados variáveis em C#". Isso é **necessário** para conquistar o troféu "Trabalhe com dados variáveis em aplicações de console do C#" da Microsoft Learn e para se qualificar para o exame de certificação. 1. Quando terminar, volte e responda corretamente à pergunta abaixo. -# --question-- - -## --assignment-- +# --assignment-- Complete o projeto de desafio Trabalhe com dados variáveis em C# no Microsoft Learn. Em seguida, responda a pergunta abaixo. +# --question-- + ## --text-- Para ordenar um array de strings, por que é importante usar o método `String.Trim()` em cada elemento do array antes de ordená-lo? diff --git a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md index a958af23eb7..c740b36faad 100644 --- a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md +++ b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md @@ -12,12 +12,12 @@ Este desafio será parcialmente concluído na plataforma Microsoft Learn. Siga e 1. Acesse https://learn.microsoft.com/training/modules/csharp-choose-data-type/ e complete todas as tarefas do módulo "Escolha o tipo de dados correto para o código em C#". Isso é **necessário** para conquistar o troféu "Trabalhe com dados variáveis em aplicações de console do C#" da Microsoft Learn e para se qualificar para o exame de certificação. 1. Quando terminar, volte e responda corretamente à pergunta abaixo. -# --question-- - -## --assignment-- +# --assignment-- Complete o módulo Escolha o tipo de dados correto para o código em C# no Microsoft Learn. Em seguida, responda a pergunta abaixo. +# --question-- + ## --text-- Um trecho de código deve armazenar valores numéricos inteiros entre `1,000,000` positivo e negativo. Que tipo de dado você deve escolher? diff --git a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md index 704e1c1b758..45f5f3416bd 100644 --- a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md +++ b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md @@ -12,12 +12,12 @@ Este desafio será parcialmente concluído na plataforma Microsoft Learn. Siga e 1. Acesse https://learn.microsoft.com/training/modules/csharp-convert-cast/ e complete todas as tarefas do módulo "Converta tipos de dados usando técnicas de casting e de conversão em C#". Isso é **necessário** para conquistar o troféu "Trabalhe com dados variáveis em aplicações de console do C#" da Microsoft Learn e para se qualificar para o exame de certificação. 1. Quando terminar, volte e responda corretamente à pergunta abaixo. -# --question-- - -## --assignment-- +# --assignment-- Complete o módulo Converta tipos de dados usando técnicas de casting e de conversão em C# no Microsoft Learn. Em seguida, responda a pergunta abaixo. +# --question-- + ## --text-- Qual tipo de ação está sendo realizada ao mudar um `float` para um `int`? diff --git a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md index 03ac59764f0..ffd96e34ec5 100644 --- a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md +++ b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md @@ -12,12 +12,12 @@ Este desafio será parcialmente concluído na plataforma Microsoft Learn. Siga e 1. Acesse https://learn.microsoft.com/training/modules/csharp-format-strings/ e complete todas as tarefas do módulo "Formate dados alfanuméricos para apresentação em C#". Isso é **necessário** para conquistar o troféu "Trabalhe com dados variáveis em aplicações de console do C#" da Microsoft Learn e para se qualificar para o exame de certificação. 1. Quando terminar, volte e responda corretamente à pergunta abaixo. -# --question-- - -## --assignment-- +# --assignment-- Complete o módulo Formate dados alfanuméricos para apresentação em C# no Microsoft Learn. Em seguida, responda a pergunta abaixo. +# --question-- + ## --text-- Para o código em C#, `Console.WriteLine("C110".PadLeft(6, '0'));`, qual é a saída esperada? diff --git a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md index e2942fe1668..1e7a32a2083 100644 --- a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md +++ b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md @@ -12,12 +12,12 @@ Este desafio será parcialmente concluído na plataforma Microsoft Learn. Siga e 1. Acesse https://learn.microsoft.com/training/modules/guided-project-work-variable-data-c-sharp/ e complete todas as tarefas do módulo "Projeto guiado – trabalhe com dados variáveis em C#". Isso é **necessário** para conquistar o troféu "Trabalhe com dados variáveis em aplicações de console do C#" da Microsoft Learn e para se qualificar para o exame de certificação. 1. Quando terminar, volte e responda corretamente à pergunta abaixo. -# --question-- - -## --assignment-- +# --assignment-- Complete o projeto guiado Trabalhe com dados variáveis em C# no Microsoft Learn. Em seguida, responda a pergunta abaixo. +# --question-- + ## --text-- Para o código `decimal.TryParse(numberString, out myConvert))` quando o tipo `numberString` é uma String. diff --git a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md index 751a3be5d40..fe33510d9d5 100644 --- a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md +++ b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md @@ -12,12 +12,12 @@ Este desafio será parcialmente concluído na plataforma Microsoft Learn. Siga e 1. Acesse https://learn.microsoft.com/training/modules/csharp-modify-content/ e complete todas as tarefas do módulo "Modifique o conteúdo de strings usando métodos integrados do tipo de dados de string em C#". Isso é **necessário** para conquistar o troféu "Trabalhe com dados variáveis em aplicações de console do C#" da Microsoft Learn e para se qualificar para o exame de certificação. 1. Quando terminar, volte e responda corretamente à pergunta abaixo. -# --question-- - -## --assignment-- +# --assignment-- Complete o módulo Modifique o conteúdo de strings usando métodos integrados do tipo de dados de string em C# no Microsoft Learn. Em seguida, responda a pergunta abaixo. +# --question-- + ## --text-- Qual método encontra o próximo índice dos caracteres `-`, `=` ou `_`? diff --git a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md index 214dddbc5ef..1be2326df50 100644 --- a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md +++ b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md @@ -12,12 +12,12 @@ Este desafio será parcialmente concluído na plataforma Microsoft Learn. Siga e 1. Acesse https://learn.microsoft.com/training/modules/csharp-arrays-operations/ e complete todas as tarefas do módulo "Realize operações em arrays usando métodos auxiliares em C#". Isso é **necessário** para conquistar o troféu "Trabalhe com dados variáveis em aplicações de console do C#" da Microsoft Learn e para se qualificar para o exame de certificação. 1. Quando terminar, volte e responda corretamente à pergunta abaixo. -# --question-- - -## --assignment-- +# --assignment-- Complete o módulo Realize operações em arrays usando métodos auxiliares em C# no Microsoft Learn. Em seguida, responda a pergunta abaixo. +# --question-- + ## --text-- Qual método altera a ordem dos itens em um array de `string`? diff --git a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md index b6a8fc35705..a83c904bc0f 100644 --- a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md +++ b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md @@ -12,12 +12,12 @@ Este desafio será parcialmente concluído na plataforma Microsoft Learn. Siga e 1. Acesse https://learn.microsoft.com/training/modules/guided-project-calculate-print-student-grades/ e complete todas as tarefas do módulo "Projeto guiado – calcular e imprimir notas de alunos". Isso é **necessário** para conquistar o troféu "Escreva seu primeiro código usando o C#" da Microsoft Learn e para se qualificar para o exame de certificação. 1. Quando terminar, volte e responda corretamente à pergunta abaixo. -# --question-- - -## --assignment-- +# --assignment-- Complete o projeto guiado Calcule e imprima notas de alunos no Microsoft Learn. Em seguida, responda a pergunta abaixo. +# --question-- + ## --text-- O que há de errado com o código a seguir? diff --git a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md index bdb267cd0ed..ac72efb2137 100644 --- a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md +++ b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md @@ -12,12 +12,12 @@ Este desafio será parcialmente concluído na plataforma Microsoft Learn. Siga e 1. Acesse https://learn.microsoft.com/training/modules/guided-project-calculate-final-gpa/ e complete todas as tarefas do módulo "Projeto guiado - calcular o GPA final". Isso é **necessário** para conquistar o troféu "Escreva seu primeiro código usando o C#" da Microsoft Learn e para se qualificar para o exame de certificação. 1. Quando terminar, volte e responda corretamente à pergunta abaixo. -# --question-- - -## --assignment-- +# --assignment-- Complete o projeto guiado Calcule o GPA final no Microsoft Learn. Em seguida, responda a pergunta abaixo. +# --question-- + ## --text-- Suponha que `decimal gradePointAverage = 3.99872831m;`. diff --git a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md index 457607fb4cd..60abf2b183b 100644 --- a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md +++ b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md @@ -12,12 +12,12 @@ Este desafio será parcialmente concluído na plataforma Microsoft Learn. Siga e 1. Acesse https://learn.microsoft.com/training/modules/csharp-basic-operations/ e complete todas as tarefas do módulo "Execute operações básicas com números em C#". Isso é **necessário** para conquistar o troféu "Escreva seu primeiro código usando o C#" da Microsoft Learn e para se qualificar para o exame de certificação. 1. Quando terminar, volte e responda corretamente à pergunta abaixo. -# --question-- - -## --assignment-- +# --assignment-- Complete o módulo Execute operações básicas com números em C# no Microsoft Learn. Em seguida, responda a pergunta abaixo. +# --question-- + ## --text-- Qual é o valor do seguinte resultado? diff --git a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md index f35ad2f2747..4ca3d299946 100644 --- a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md +++ b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md @@ -12,12 +12,12 @@ Este desafio será parcialmente concluído na plataforma Microsoft Learn. Siga e 1. Acesse https://learn.microsoft.com/training/modules/csharp-basic-formatting/ e complete todas as tarefas do módulo "Realize a formatação básica de strings em C#". Isso é **necessário** para conquistar o troféu "Escreva seu primeiro código usando o C#" da Microsoft Learn e para se qualificar para o exame de certificação. 1. Quando terminar, volte e responda corretamente à pergunta abaixo. -# --question-- - -## --assignment-- +# --assignment-- Complete o módulo Realize a formatação básica de strings em C# no Microsoft Learn. Em seguida, responda a pergunta abaixo. +# --question-- + ## --text-- Qual das linhas a seguir de código usa interpolação de strings corretamente, assumindo que a variável `value` é uma string? diff --git a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md index d85ba144954..32658ca6898 100644 --- a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md +++ b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md @@ -12,12 +12,12 @@ Este desafio será parcialmente concluído na plataforma Microsoft Learn. Siga e 1. Acesse https://learn.microsoft.com/training/modules/csharp-literals-variables/ e complete todas as tarefas do módulo "Armazene e recupere dados usando valores literais e variáveis em C#". Isso é **necessário** para conquistar o troféu "Escreva seu primeiro código usando o C#" da Microsoft Learn e para se qualificar para o exame de certificação. 1. Quando terminar, volte e responda corretamente à pergunta abaixo. -# --question-- - -## --assignment-- +# --assignment-- Complete o módulo Armazene e recupere dados usando valores literais e variáveis em C# no Microsoft Learn. Em seguida, responda a pergunta abaixo. +# --question-- + ## --text-- Qual das linhas de código a seguir cria uma variável corretamente? diff --git a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md index e84f0ad536e..9a2d237f4d2 100644 --- a/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md +++ b/curriculum/challenges/portuguese/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md @@ -12,12 +12,12 @@ Este desafio será parcialmente concluído na plataforma Microsoft Learn. Siga e 1. Acesse https://learn.microsoft.com/training/modules/csharp-write-first/ e complete todas as tarefas do módulo "Escreva seu primeiro código em C#". Isso é **necessário** para conquistar o troféu "Escreva seu primeiro código usando o C#" da Microsoft Learn e para se qualificar para o exame de certificação. 1. Quando terminar, volte e responda corretamente à pergunta abaixo. -# --question-- - -## --assignment-- +# --assignment-- Complete o módulo Escreva seu primeiro código em C# no Microsoft Learn. Em seguida, responda a pergunta abaixo. +# --question-- + ## --text-- Qual é a diferença entre `Console.Write` e `Console.WriteLine`? diff --git a/curriculum/challenges/swahili/16-the-odin-project/top-learn-html-foundations/html-foundations-question-a.md b/curriculum/challenges/swahili/16-the-odin-project/top-learn-html-foundations/html-foundations-question-a.md index 26dcaf81d51..138c596a766 100644 --- a/curriculum/challenges/swahili/16-the-odin-project/top-learn-html-foundations/html-foundations-question-a.md +++ b/curriculum/challenges/swahili/16-the-odin-project/top-learn-html-foundations/html-foundations-question-a.md @@ -26,12 +26,12 @@ HTML has a vast list of predefined tags that you can use to create all kinds of Using the correct elements for content is called semantic HTML. You will explore this in much more depth later on in the curriculum. -# --question-- - -## --assignment-- +# --assignment-- Watch Kevin Powell’s [Introduction to HTML video](https://www.youtube.com/watch?v=LGQuIIv2RVA&list=PL4-IK0AVhVjM0xE0K2uZRvsM7LkIhsPT-) +# --question-- + ## --text-- What are HTML tags? diff --git a/curriculum/challenges/swahili/16-the-odin-project/top-learn-html-foundations/html-foundations-question-e.md b/curriculum/challenges/swahili/16-the-odin-project/top-learn-html-foundations/html-foundations-question-e.md index 58e4fab1b96..0a6e5658f3d 100644 --- a/curriculum/challenges/swahili/16-the-odin-project/top-learn-html-foundations/html-foundations-question-e.md +++ b/curriculum/challenges/swahili/16-the-odin-project/top-learn-html-foundations/html-foundations-question-e.md @@ -11,12 +11,12 @@ HTML and CSS are two languages that work together to create everything that you Many helpful resources out there keep referring to HTML and CSS as programming languages, but if you want to get technical, labeling them as such is not quite accurate. This is because they are only concerned with presenting information. They are not used to program logic. JavaScript, which you will learn in the next section, is a programming language because it’s used to make webpages do things. Yet, there is quite a lot you can do with just HTML and CSS, and you will definitely need them both. Throughout our curriculum, the following lessons focus on giving you the tools you need to succeed once you reach JavaScript content. -# --question-- - -## --assignment-- +# --assignment-- Read the HTML vs CSS vs JavaScript article. It is a quick overview of the relationships between HTML, CSS, and JavaScript. +# --question-- + ## --text-- Which of the following statements is true? @@ -37,5 +37,3 @@ HTML and CSS are used to add style to a webpage, and JavaScript is used to creat ## --video-solution-- 2 - - diff --git a/curriculum/challenges/swahili/16-the-odin-project/top-learn-html-foundations/html-foundations-question-g.md b/curriculum/challenges/swahili/16-the-odin-project/top-learn-html-foundations/html-foundations-question-g.md index 16299d58648..29cc79ceab3 100644 --- a/curriculum/challenges/swahili/16-the-odin-project/top-learn-html-foundations/html-foundations-question-g.md +++ b/curriculum/challenges/swahili/16-the-odin-project/top-learn-html-foundations/html-foundations-question-g.md @@ -12,9 +12,7 @@ The final element needed to complete the HTML boilerplate is the `` elemen To complete the boilerplate, add a `body` element to the `index.html` file. The `body` element also goes within the `html` element and is always below the `head` element, like so: -# --question-- - -## --assignment-- +# --assignment-- Watch and follow along to Kevin Powell’s brilliant Building your first web page video above. @@ -26,6 +24,8 @@ Build some muscle memory by deleting the contents of the `index.html` file and t Run your boilerplate through this [HTML validator](https://www.freeformatter.com/html-validator.html). Validators ensure your markup is correct and are an excellent learning tool, as they provide feedback on syntax errors you may be making often and aren’t aware of, such as missing closing tags and extra spaces in your HTML. +# --question-- + ## --text-- What is the purpose of the `body` element? diff --git a/curriculum/challenges/swahili/16-the-odin-project/top-links-and-images/links-and-images-question-a.md b/curriculum/challenges/swahili/16-the-odin-project/top-links-and-images/links-and-images-question-a.md index b4d237448f3..09759d1d3e7 100644 --- a/curriculum/challenges/swahili/16-the-odin-project/top-links-and-images/links-and-images-question-a.md +++ b/curriculum/challenges/swahili/16-the-odin-project/top-links-and-images/links-and-images-question-a.md @@ -39,12 +39,12 @@ By default, any text wrapped with an anchor tag without a `href` attribute will It’s worth noting you can use anchor tags to link to any kind of resource on the internet, not just other HTML documents. You can link to videos, pdf files, images, and so on, but for the most part, you will be linking to other HTML documents. -# --question-- - -## --assignment-- +# --assignment-- Watch Kevin Powell’s HTML Links video above. +# --question-- + ## --text-- What HTML tag is used to create a link? diff --git a/curriculum/challenges/swahili/16-the-odin-project/top-links-and-images/links-and-images-question-d.md b/curriculum/challenges/swahili/16-the-odin-project/top-links-and-images/links-and-images-question-d.md index 37eebffbabf..19e8da36314 100644 --- a/curriculum/challenges/swahili/16-the-odin-project/top-links-and-images/links-and-images-question-d.md +++ b/curriculum/challenges/swahili/16-the-odin-project/top-links-and-images/links-and-images-question-d.md @@ -85,12 +85,12 @@ In many cases, this will work just fine; however, you can still run into unexpec ``` -# --question-- - -## --assignment-- +# --assignment-- Watch Kevin Powell’s HTML File Structure video above. +# --question-- + ## --text-- What is the difference between an absolute and a relative link? diff --git a/curriculum/challenges/swahili/16-the-odin-project/top-links-and-images/links-and-images-question-e.md b/curriculum/challenges/swahili/16-the-odin-project/top-links-and-images/links-and-images-question-e.md index ae008078088..8ac3815d177 100644 --- a/curriculum/challenges/swahili/16-the-odin-project/top-links-and-images/links-and-images-question-e.md +++ b/curriculum/challenges/swahili/16-the-odin-project/top-links-and-images/links-and-images-question-e.md @@ -71,12 +71,12 @@ The `alt` attribute is used to describe an image. It will be used in place of th This is how the The Odin Project logo example you used earlier looks with an `alt` attribute included: -# --question-- - -## --assignment-- +# --assignment-- Watch Kevin Powell’s HTML Images Video above. +# --question-- + ## --text-- Which tag is used to display an image? diff --git a/curriculum/challenges/swahili/16-the-odin-project/top-links-and-images/links-and-images-question-h.md b/curriculum/challenges/swahili/16-the-odin-project/top-links-and-images/links-and-images-question-h.md index 71157081ae7..f7ed108d84e 100644 --- a/curriculum/challenges/swahili/16-the-odin-project/top-links-and-images/links-and-images-question-h.md +++ b/curriculum/challenges/swahili/16-the-odin-project/top-links-and-images/links-and-images-question-h.md @@ -70,12 +70,12 @@ The `alt` attribute is used to describe an image. It will be used in place of th This is how the The Odin Project logo example you used earlier looks with an alt attribute included: -# --question-- - -## --assignment-- +# --assignment-- Read about the four main image formats that can be used on the web. +# --question-- + ## --text-- What are the four main image formats that you can use for images on the web? diff --git a/curriculum/challenges/swahili/16-the-odin-project/top-the-box-model/the-box-model-question-a.md b/curriculum/challenges/swahili/16-the-odin-project/top-the-box-model/the-box-model-question-a.md index 81cc2d54518..e2882cdb454 100644 --- a/curriculum/challenges/swahili/16-the-odin-project/top-the-box-model/the-box-model-question-a.md +++ b/curriculum/challenges/swahili/16-the-odin-project/top-the-box-model/the-box-model-question-a.md @@ -13,12 +13,12 @@ To open up the inspector, you can right-click on any element of a webpage and cl Don’t get overwhelmed with all the tools you’re now seeing! For this lesson, we want to focus on the Elements and Styles panes. -# --question-- - -## --assignment-- +# --assignment-- Play around with Chrome Dev Tools and see if you can answer the following question. +# --question-- + ## --text-- Which panes should you focus on in the Chrome Dev Tools for inspecting and debugging HTML and CSS? diff --git a/curriculum/challenges/swahili/16-the-odin-project/top-the-box-model/the-box-model-question-c.md b/curriculum/challenges/swahili/16-the-odin-project/top-the-box-model/the-box-model-question-c.md index 84cee19aea0..25a32e0f581 100644 --- a/curriculum/challenges/swahili/16-the-odin-project/top-the-box-model/the-box-model-question-c.md +++ b/curriculum/challenges/swahili/16-the-odin-project/top-the-box-model/the-box-model-question-c.md @@ -14,12 +14,12 @@ When an element is selected, the Styles tab will show all the currently applied ![Overwritten style](https://cdn.statically.io/gh/TheOdinProject/curriculum/f8fd38fc62578d8e8368f5303126215a492847f0/foundations/html_css/inspecting-html-and-css/imgs/03.png) -# --question-- - -## --assignment-- +# --assignment-- Play around with Chrome Dev Tools and see if you can answer the following question. +# --question-- + ## --text-- Which feature in the Elements pane allows you to select any element on a webpage by hovering over it? diff --git a/curriculum/challenges/swahili/16-the-odin-project/top-the-box-model/the-box-model-question-d.md b/curriculum/challenges/swahili/16-the-odin-project/top-the-box-model/the-box-model-question-d.md index 4d882631471..a4d810760a5 100644 --- a/curriculum/challenges/swahili/16-the-odin-project/top-the-box-model/the-box-model-question-d.md +++ b/curriculum/challenges/swahili/16-the-odin-project/top-the-box-model/the-box-model-question-d.md @@ -14,13 +14,12 @@ When an element is selected, the Styles tab will show all the currently applied ![Overwritten style](https://cdn.statically.io/gh/TheOdinProject/curriculum/f8fd38fc62578d8e8368f5303126215a492847f0/foundations/html_css/inspecting-html-and-css/imgs/03.png) - -# --question-- - -## --assignment-- +# --assignment-- Play around with Chrome Dev Tools and see if you can answer the following question. +# --question-- + ## --text-- In the Styles pane, what information can you view about an element when it is selected? diff --git a/curriculum/challenges/swahili/16-the-odin-project/top-the-box-model/the-box-model-question-f.md b/curriculum/challenges/swahili/16-the-odin-project/top-the-box-model/the-box-model-question-f.md index a91d049aee3..96e12157b13 100644 --- a/curriculum/challenges/swahili/16-the-odin-project/top-the-box-model/the-box-model-question-f.md +++ b/curriculum/challenges/swahili/16-the-odin-project/top-the-box-model/the-box-model-question-f.md @@ -16,13 +16,12 @@ Every single thing on a webpage is a rectangular box. These boxes can have other } ``` - -# --question-- - -## --assignment-- +# --assignment-- Add a border to every element on the page and see how the boxes are laid out. +# --question-- + ## --text-- What is the fundamental concept in CSS that helps you understand the structure of elements as rectangular boxes? diff --git a/curriculum/challenges/swahili/16-the-odin-project/top-the-box-model/the-box-model-question-g.md b/curriculum/challenges/swahili/16-the-odin-project/top-the-box-model/the-box-model-question-g.md index b8c981a7aa9..fdd4840cfa0 100644 --- a/curriculum/challenges/swahili/16-the-odin-project/top-the-box-model/the-box-model-question-g.md +++ b/curriculum/challenges/swahili/16-the-odin-project/top-the-box-model/the-box-model-question-g.md @@ -20,12 +20,12 @@ Be sure to study the diagrams carefully. ![the box model](https://cdn.statically.io/gh/TheOdinProject/curriculum/main/foundations/html_css/css-foundations/the-box-model/imgs/box-model.png) -# --question-- - -## --assignment-- +# --assignment-- Add a border to every element on the page and see how the boxes are laid out. +# --question-- + ## --text-- From inside to outside, what is the order of box-model properties? diff --git a/curriculum/challenges/swahili/16-the-odin-project/top-working-with-text/working-with-text-question-a.md b/curriculum/challenges/swahili/16-the-odin-project/top-working-with-text/working-with-text-question-a.md index 8698b62aca8..33176924828 100644 --- a/curriculum/challenges/swahili/16-the-odin-project/top-working-with-text/working-with-text-question-a.md +++ b/curriculum/challenges/swahili/16-the-odin-project/top-working-with-text/working-with-text-question-a.md @@ -32,12 +32,12 @@ Changing our example from before to use paragraph elements fixes the issue: -# --question-- - -## --assignment-- +# --assignment-- Watch and follow along to Kevin Powell’s HTML Paragraph and Headings Video above. +# --question-- + ## --text-- How do you create a paragraph in HTML? diff --git a/curriculum/challenges/swahili/16-the-odin-project/top-working-with-text/working-with-text-question-c.md b/curriculum/challenges/swahili/16-the-odin-project/top-working-with-text/working-with-text-question-c.md index 6ccf0e06658..da6e3dd4511 100644 --- a/curriculum/challenges/swahili/16-the-odin-project/top-working-with-text/working-with-text-question-c.md +++ b/curriculum/challenges/swahili/16-the-odin-project/top-working-with-text/working-with-text-question-c.md @@ -20,12 +20,12 @@ But you will probably find yourself using the `strong` element much more in comb Sometimes you will want to make text bold without giving it an important meaning. You’ll learn how to do that in the CSS lessons later in the curriculum. -# --question-- - -## --assignment-- +# --assignment-- Watch Kevin Powell’s HTML Bold and Italic Text Video above. +# --question-- + ## --text-- What element should you use to make text bold and important? diff --git a/curriculum/challenges/swahili/16-the-odin-project/top-working-with-text/working-with-text-question-g.md b/curriculum/challenges/swahili/16-the-odin-project/top-working-with-text/working-with-text-question-g.md index 5f5d141fa46..23881db5be0 100644 --- a/curriculum/challenges/swahili/16-the-odin-project/top-working-with-text/working-with-text-question-g.md +++ b/curriculum/challenges/swahili/16-the-odin-project/top-working-with-text/working-with-text-question-g.md @@ -21,12 +21,12 @@ Writing an HTML comment is simple: You just enclose the comment with ` ``` -# --question-- - -## --assignment-- +# --assignment-- To get some practice working with text in HTML, create a plain blog article page which uses different headings, uses paragraphs, and has some text in the paragraphs bolded and italicized. You can use [Lorem Ipsum](https://loremipsum.io) to generate dummy text, in place of real text as you build your sites. +# --question-- + ## --text-- How do you create HTML comments? diff --git a/curriculum/challenges/swahili/16-the-odin-project/top-working-with-text/working-with-text-question-h.md b/curriculum/challenges/swahili/16-the-odin-project/top-working-with-text/working-with-text-question-h.md index c20b4de097a..29feb0cf613 100644 --- a/curriculum/challenges/swahili/16-the-odin-project/top-working-with-text/working-with-text-question-h.md +++ b/curriculum/challenges/swahili/16-the-odin-project/top-working-with-text/working-with-text-question-h.md @@ -22,9 +22,7 @@ Ordered lists are created using the `
                    ` element. Each individual item in them -# --question-- - -## --assignment-- +# --assignment-- Watch the first three minutes of Kevin Powell's video on Ordered and Unordered lists above. @@ -44,6 +42,8 @@ Make an unordered list of places you’d like to visit someday. Make an ordered list of your all time top 5 favorite video games or movies. +# --question-- + ## --text-- What HTML tag is used to create an unordered list? diff --git a/curriculum/challenges/swahili/17-college-algebra-with-python/learn-applications-of-linear-systems/word-problems.md b/curriculum/challenges/swahili/17-college-algebra-with-python/learn-applications-of-linear-systems/word-problems.md index 0a15305c01e..1b2711c96f6 100644 --- a/curriculum/challenges/swahili/17-college-algebra-with-python/learn-applications-of-linear-systems/word-problems.md +++ b/curriculum/challenges/swahili/17-college-algebra-with-python/learn-applications-of-linear-systems/word-problems.md @@ -16,9 +16,7 @@ This first video will look at key words that tell you what math operation to use \- Algebra and Trigonometry by Jay Abramson -# --question-- - -## --assignment-- +# --assignment-- Complete the problems on pages 63, 75, 85, and 118 from "Business Math, a Step-by-Step Handbook (2021)". @@ -26,6 +24,8 @@ Complete the problems on pages 63, 75, 85, and 118 from "Business Math, a Step-b Complete the problems on pages 304, 308, and 321 from "Algebra and Trigonometry". +# --question-- + ## --text-- Which of the following key words indicate subtraction? diff --git a/curriculum/challenges/swahili/17-college-algebra-with-python/learn-business-applications-of-college-algebra/demand-and-revenue.md b/curriculum/challenges/swahili/17-college-algebra-with-python/learn-business-applications-of-college-algebra/demand-and-revenue.md index ca2ea6f7796..0a70a02cf1d 100644 --- a/curriculum/challenges/swahili/17-college-algebra-with-python/learn-business-applications-of-college-algebra/demand-and-revenue.md +++ b/curriculum/challenges/swahili/17-college-algebra-with-python/learn-business-applications-of-college-algebra/demand-and-revenue.md @@ -16,12 +16,12 @@ Here is the Business Math, a Step-by-Step Handbook (2021) by Jean-Paul Oliver -# --question-- - -## --assignment-- +# --assignment-- Complete the problems on pages 155 and 163 from "Business Math, a Step-by-Step Handbook (2021)". +# --question-- + ## --text-- Which of the following business equations is not correct? diff --git a/curriculum/challenges/swahili/17-college-algebra-with-python/learn-fractions-and-decimals/converting-fractions-and-decimals.md b/curriculum/challenges/swahili/17-college-algebra-with-python/learn-fractions-and-decimals/converting-fractions-and-decimals.md index 7386db1e3a1..5224ac7cf0a 100644 --- a/curriculum/challenges/swahili/17-college-algebra-with-python/learn-fractions-and-decimals/converting-fractions-and-decimals.md +++ b/curriculum/challenges/swahili/17-college-algebra-with-python/learn-fractions-and-decimals/converting-fractions-and-decimals.md @@ -12,12 +12,12 @@ The first video will show you how to convert between fractions, decimals, and pe Here is the Colab notebook used in the video. Use this code as a model, and write your own code to convert fractions and decimals. -# --question-- - -## --assignment-- +# --assignment-- Add the code to convert fractions and decimals to your algebra Colab notebook. +# --question-- + ## --text-- Which of the following correctly represents "three hundredths" as a decimal? diff --git a/curriculum/challenges/swahili/17-college-algebra-with-python/learn-fractions-and-decimals/fractions-and-decimals-extra.md b/curriculum/challenges/swahili/17-college-algebra-with-python/learn-fractions-and-decimals/fractions-and-decimals-extra.md index e1ac138f79e..7c367228f0c 100644 --- a/curriculum/challenges/swahili/17-college-algebra-with-python/learn-fractions-and-decimals/fractions-and-decimals-extra.md +++ b/curriculum/challenges/swahili/17-college-algebra-with-python/learn-fractions-and-decimals/fractions-and-decimals-extra.md @@ -12,9 +12,7 @@ The following video will show you one way to set up your Google Colaboratory not Here is the Colab notebook used in this video so you can use it as a model. -# --question-- - -## --assignment-- +# --assignment-- Add the code to factor and solve for a variable to your algebra Colab notebook. @@ -22,6 +20,8 @@ Add the code to factor and solve for a variable to your algebra Colab notebook. Run the code in the following notebook to get practice converting fractions and decimals. As a bonus, look at the code used to generate the practice problems. +# --question-- + ## --text-- Which of the following languages can you not use in Google Colaboratory? diff --git a/curriculum/challenges/swahili/17-college-algebra-with-python/learn-functions-and-graphing/functions-and-graphing-extra.md b/curriculum/challenges/swahili/17-college-algebra-with-python/learn-functions-and-graphing/functions-and-graphing-extra.md index d5516d90fb2..4cc6201ae95 100644 --- a/curriculum/challenges/swahili/17-college-algebra-with-python/learn-functions-and-graphing/functions-and-graphing-extra.md +++ b/curriculum/challenges/swahili/17-college-algebra-with-python/learn-functions-and-graphing/functions-and-graphing-extra.md @@ -12,12 +12,12 @@ This next video will show you the connection between functions and graphing. Not Here is the Colab notebook to go with this video. -# --question-- - -## --assignment-- +# --assignment-- Add code to your algebra Colab notebook for functions and graphing. +# --question-- + ## --text-- What Python library would you import to create arrays that you can graph? diff --git a/curriculum/challenges/swahili/17-college-algebra-with-python/learn-functions-and-graphing/functions.md b/curriculum/challenges/swahili/17-college-algebra-with-python/learn-functions-and-graphing/functions.md index a5f13dca979..d511fecf032 100644 --- a/curriculum/challenges/swahili/17-college-algebra-with-python/learn-functions-and-graphing/functions.md +++ b/curriculum/challenges/swahili/17-college-algebra-with-python/learn-functions-and-graphing/functions.md @@ -12,12 +12,12 @@ This first video will show you what it means to be a function, and then it will Here is the Colab notebook used in this and the next videos. -# --question-- - -## --assignment-- +# --assignment-- Add code to your algebra Colab notebook that creates Python functions for decimal-to-fraction conversions +# --question-- + ## --text-- After defining a function in Python, indent each line of the function how many spaces? diff --git a/curriculum/challenges/swahili/17-college-algebra-with-python/learn-functions-and-graphing/graphing.md b/curriculum/challenges/swahili/17-college-algebra-with-python/learn-functions-and-graphing/graphing.md index ac237fcbcb2..3c170849ede 100644 --- a/curriculum/challenges/swahili/17-college-algebra-with-python/learn-functions-and-graphing/graphing.md +++ b/curriculum/challenges/swahili/17-college-algebra-with-python/learn-functions-and-graphing/graphing.md @@ -12,9 +12,7 @@ This next video will show you the connection between functions and graphing. Not Here is the Colab notebook to go with the last two videos so you can start making your own graphs. -# --question-- - -## --assignment-- +# --assignment-- Add code to your algebra Colab notebook for functions and graphing. @@ -22,6 +20,8 @@ Add code to your algebra Colab notebook for functions and graphing. Run the following notebook to see more ways to create graphs using algebra and Python. +# --question-- + ## --text-- Which of the following would put a blue line on a graph? diff --git a/curriculum/challenges/swahili/17-college-algebra-with-python/learn-how-to-graph-systems-of-equations/graphing-systems.md b/curriculum/challenges/swahili/17-college-algebra-with-python/learn-how-to-graph-systems-of-equations/graphing-systems.md index d9dca33678b..7224ab905a2 100644 --- a/curriculum/challenges/swahili/17-college-algebra-with-python/learn-how-to-graph-systems-of-equations/graphing-systems.md +++ b/curriculum/challenges/swahili/17-college-algebra-with-python/learn-how-to-graph-systems-of-equations/graphing-systems.md @@ -12,12 +12,12 @@ This first video will show you how to graph systems of equations with written ma Here is the Colab notebook used in this video. -# --question-- - -## --assignment-- +# --assignment-- Add code from the video to the algebra notebook you are building, and test it with different functions. +# --question-- + ## --text-- The numpy `linspace()` function takes three arguments to create an array. Which of the following arguments does it not take? diff --git a/curriculum/challenges/swahili/17-college-algebra-with-python/learn-how-to-solve-for-x/how-to-solve-for-x-extra.md b/curriculum/challenges/swahili/17-college-algebra-with-python/learn-how-to-solve-for-x/how-to-solve-for-x-extra.md index 5d9ca07f933..18484302ead 100644 --- a/curriculum/challenges/swahili/17-college-algebra-with-python/learn-how-to-solve-for-x/how-to-solve-for-x-extra.md +++ b/curriculum/challenges/swahili/17-college-algebra-with-python/learn-how-to-solve-for-x/how-to-solve-for-x-extra.md @@ -12,9 +12,7 @@ This video will go deeper, with more examples of how to use SymPy solve. It will Here is the Colab notebook to go along with this video. Use it to add more to the algebra Colab notebook that you are building. -# --question-- - -## --assignment-- +# --assignment-- Add the code for more ways to solve for x from the video to your algebra Colab notebook. @@ -22,6 +20,8 @@ Add the code for more ways to solve for x from the video to your algebra Colab n Open the following Colab notebook, run the cell, and practice solving one and two-step algebra problems. As a bonus, look at the code that generates the practice problems. +# --question-- + ## --text-- If you import sympy and define x as a variable, what would be the output from the following code? diff --git a/curriculum/challenges/swahili/17-college-algebra-with-python/learn-how-to-solve-for-x/solving-for-x.md b/curriculum/challenges/swahili/17-college-algebra-with-python/learn-how-to-solve-for-x/solving-for-x.md index cf99c6cfbd1..359af3680b5 100644 --- a/curriculum/challenges/swahili/17-college-algebra-with-python/learn-how-to-solve-for-x/solving-for-x.md +++ b/curriculum/challenges/swahili/17-college-algebra-with-python/learn-how-to-solve-for-x/solving-for-x.md @@ -12,12 +12,12 @@ This first video will show you the essence of algebra and then how Python code d Here is the Colab notebook to go along with this video. Add the code from the video to your algebra Colab notebook to see how to solve for X using Python. Then change the code if you want, test it, and compare it to paper-and-pencil solving. Remember the equation input needs to be in Python syntax. -# --question-- - -## --assignment-- +# --assignment-- Add the code to solve for x from the video to your algebra Colab notebook. +# --question-- + ## --text-- In Python, what is the library you import to solve algebra problems with variables? diff --git a/curriculum/challenges/swahili/17-college-algebra-with-python/learn-how-to-solve-systems-of-equations/solving-systems.md b/curriculum/challenges/swahili/17-college-algebra-with-python/learn-how-to-solve-systems-of-equations/solving-systems.md index 08847d0f8a6..fff4fb886a7 100644 --- a/curriculum/challenges/swahili/17-college-algebra-with-python/learn-how-to-solve-systems-of-equations/solving-systems.md +++ b/curriculum/challenges/swahili/17-college-algebra-with-python/learn-how-to-solve-systems-of-equations/solving-systems.md @@ -12,12 +12,12 @@ The first video will show you the math behind solving a system of two equations Here is the Colab notebook used in this video. -# --question-- - -## --assignment-- +# --assignment-- Add code to your notebook to solve and graph systems of equations +# --question-- + ## --text-- Which of the following can SymPy do that matplotlib can't do? diff --git a/curriculum/challenges/swahili/17-college-algebra-with-python/learn-linear-functions/linear-equations.md b/curriculum/challenges/swahili/17-college-algebra-with-python/learn-linear-functions/linear-equations.md index c513b57f2eb..e6b1e211b81 100644 --- a/curriculum/challenges/swahili/17-college-algebra-with-python/learn-linear-functions/linear-equations.md +++ b/curriculum/challenges/swahili/17-college-algebra-with-python/learn-linear-functions/linear-equations.md @@ -12,12 +12,12 @@ This video will show you the math behind finding the y-intercept in a linear fun Here is the Colab notebook to go with the last two videos, so you can see the formulas. -# --question-- - -## --assignment-- +# --assignment-- Add code to your algebra Colab notebook to graph a function from points or from equation input. +# --question-- + ## --text-- If you know the slope ("m") and you have one (x,y) coordinate point, which of the following equations could you use to find "b", representing the y-intercept in Python? diff --git a/curriculum/challenges/swahili/17-college-algebra-with-python/learn-ratios-and-proportions/introduction-to-college-algebra-with-python.md b/curriculum/challenges/swahili/17-college-algebra-with-python/learn-ratios-and-proportions/introduction-to-college-algebra-with-python.md index 834b288fe92..66e0414871b 100644 --- a/curriculum/challenges/swahili/17-college-algebra-with-python/learn-ratios-and-proportions/introduction-to-college-algebra-with-python.md +++ b/curriculum/challenges/swahili/17-college-algebra-with-python/learn-ratios-and-proportions/introduction-to-college-algebra-with-python.md @@ -16,12 +16,12 @@ This first video includes an introduction to the course, how it will work, and h \- Algebra and Trigonometry by Jay Abramson -# --question-- - -## --assignment-- +# --assignment-- Create an algebra Colab notebook on your google drive so you can follow along with the videos. +# --question-- + ## --text-- When adding text in Google Colab, what symbol would you use to create a heading that will appear in the table of contents? diff --git a/curriculum/challenges/swahili/17-college-algebra-with-python/learn-ratios-and-proportions/ratios-and-proportions-extra.md b/curriculum/challenges/swahili/17-college-algebra-with-python/learn-ratios-and-proportions/ratios-and-proportions-extra.md index 663f0cc63e5..170a6679d68 100644 --- a/curriculum/challenges/swahili/17-college-algebra-with-python/learn-ratios-and-proportions/ratios-and-proportions-extra.md +++ b/curriculum/challenges/swahili/17-college-algebra-with-python/learn-ratios-and-proportions/ratios-and-proportions-extra.md @@ -10,12 +10,12 @@ dashedName: ratios-and-proportions-extra The last video in this section will show you how to use proportions in other applications, such as currency exchange rates and unit conversion. It will also show you more about setting up your notebook and working through the practice assignment. -# --question-- - -## --assignment-- +# --assignment-- Open the following Colab notebook, run the cell, and practice solving one-step algebra problems. As a bonus, look at the code that generates the practice problems. +# --question-- + ## --text-- What is another way to write 0.9999... (repeating 9)? diff --git a/curriculum/challenges/swahili/17-college-algebra-with-python/learn-ratios-and-proportions/solving-proportions.md b/curriculum/challenges/swahili/17-college-algebra-with-python/learn-ratios-and-proportions/solving-proportions.md index 8371ec1655d..14a060f564e 100644 --- a/curriculum/challenges/swahili/17-college-algebra-with-python/learn-ratios-and-proportions/solving-proportions.md +++ b/curriculum/challenges/swahili/17-college-algebra-with-python/learn-ratios-and-proportions/solving-proportions.md @@ -12,12 +12,12 @@ Now we get to the math content. This video will show you how to set up and solve Here is the Colab notebook to go along with this video. If you have not done so yet, set up your algebra Colab notebook from the last video. Then, add the code from this video to it. -# --question-- - -## --assignment-- +# --assignment-- Add the code from the video to the algebra Colab notebook you created in the first step. +# --question-- + ## --text-- In solving a proportion, if one numerator is zero, does the other numerator have to be zero for the statement to be true? diff --git a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md index 04d809176cc..d5de7121c15 100644 --- a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md +++ b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-do-while/ and complete all the tasks for the "Add Looping Logic to Your Code Using the do-while and while Statements in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Add Looping Logic to Your Code Using the `do`-`while` and `while` Statements in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- A developer needs to iterate through an array of items to find one that matches a certain criteria. Which is the best iteration statement for this purpose? diff --git a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md index d0087ce5be8..ee50cb1473b 100644 --- a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md +++ b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-switch-case/ and complete all the tasks for the "Branch the Flow of Code Using the switch-case Construct in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Branch the Flow of Code Using the `switch`-`case` Construct in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What is the purpose of the `break` keyword? diff --git a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md index b34b20dcdd7..a837a683f26 100644 --- a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md +++ b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/challenge-project-develop-branching-looping-structures-c-sharp/ and complete all the tasks for the "Challenge Project - Develop Branching and Looping Structures in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Develop Branching and Looping Structures in C# challenge project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- A developer needs to create an iteration statement. Under what condition is a `while` statement a better choice than a `do` statement? diff --git a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md index bf5a4084719..68fae6e49b2 100644 --- a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md +++ b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-code-blocks/ and complete all the tasks for the "Control Variable Scope and Logic Using Code Blocks in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Control Variable Scope and Logic Using Code Blocks in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following statements is true about showing/removing the curly braces for code blocks associated with an `if` statement? diff --git a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md index 3f503f69e32..f1d60edd59a 100644 --- a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md +++ b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-evaluate-boolean-expressions/ and complete all the tasks for the "Evaluate Boolean Expressions to Make Decisions in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Evaluate Boolean Expressions to Make Decisions in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following lines of code is a valid use of the conditional operator? diff --git a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md index f23006f2793..a678783a004 100644 --- a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md +++ b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-develop-conditional-branching-looping/ and complete all the tasks for the "Guided Project - Develop Conditional Branching and Looping Structures in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Develop Conditional Branching and Looping Structures in C# guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- When is it appropriate to use a `switch-case` construct rather than a `if-elseif-else` construct? diff --git a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md index 29f7fbe4ca9..d85cd9e79c5 100644 --- a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md +++ b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-for/ and complete all the tasks for the "Iterate Through a Code Block Using the for Statement in C#" module. This is **required** to earn the "Add Logic to C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Iterate Through a Code Block Using the `for` Statement in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following `for` statements is correct? diff --git a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md index 597a1daa754..b4c34681581 100644 --- a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md +++ b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-if-elseif-else/ and complete all the tasks for the "Add Decision Logic to Your Code Using if, else, and else if statements in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Add Decision Logic to Your Code Using `if`, `else`, and `else if` Statements in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the choices below is not a valid operator in C#? diff --git a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md index aeeed01382f..64ee30462ef 100644 --- a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md +++ b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-call-methods/ and complete all the tasks for the "Call Methods From the .NET Class Library Using C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Call Methods from the .NET Class Library Using C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What is an object? diff --git a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md index 4124a3e48d0..c19935da753 100644 --- a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md +++ b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/challenge-project-arrays-iteration-selection/ and complete all the tasks for the "Challenge Project - Develop foreach and if-elseif-else Structures to Process Array Data in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Develop `foreach` and `if`-`elseif`-`else` Structures to Process Array Data in C# challenge project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- A developer is working with two other developers to update a collection of applications. The developers will use code comments during the update process. Which of the following describes an appropriate use of code comments? diff --git a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md index ff048d90565..221d8229223 100644 --- a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md +++ b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-readable-code/ and complete all the tasks for the "Create Readable Code with Conventions, Whitespace, and Comments in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Create Readable Code with Conventions, Whitespace, and Comments in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following is a bad reason to use a code comment? diff --git a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md index 94f87df9df4..af1892b527b 100644 --- a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md +++ b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-arrays-iteration-selection/ and complete all the tasks for the "Guided Project - Develop foreach and if-elseif-else Structures to Process Array Data in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Develop `foreach` and `if`-`elseif`-`else` Structures to Process Array Data in C# guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- A developer writes an application that uses a `foreach` loop to iterate through an array containing 20 elements. After the application is complete, the developer learns that the array must be updated to include 40 elements. The application needs to examine all 40 array elements. Which of the following items describes the required code update? diff --git a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md index 293d196cf6f..772087d66a9 100644 --- a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md +++ b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/install-configure-visual-studio-code/ and complete all the tasks for the "Install and Configure Visual Studio Code" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Install and Configure Visual Studio Code module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following choices provides the best description of an Integrated Development Environment (IDE)? diff --git a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md index 2e1bc53cae6..33713c19393 100644 --- a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md +++ b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-arrays/ and complete all the tasks for the "Store and Iterate Through Sequences of Data Using Arrays and the foreach Statement in C#" module. This is **required** to earn the "Create and Run Simple C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Store and Iterate Through Sequences of Data Using Arrays and the `foreach` Statement in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following foreach statements is syntactically correct? diff --git a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md index 1f9c05bfa10..18794d3b5af 100644 --- a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md +++ b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/challenge-project-create-mini-game/ and complete all the tasks for the "Challenge Project - Create a Mini-Game" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Create a Mini-Game challenge project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- A developer wants to create a method that returns a value in an array. Which of the following options would be a good choice for a method signature? diff --git a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md index f30799e881f..01aaf75c313 100644 --- a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md +++ b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/create-c-sharp-methods-return-values/ and complete all the tasks for the "Create C# Methods that Return Values" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Create C# Methods that Return Values module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following options correctly returns a `string` value? diff --git a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md index c576ee4c155..44f48d4b8c9 100644 --- a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md +++ b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/create-c-sharp-methods-parameters/ and complete all the tasks for the "Create C# Methods with Parameters" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Create C# Methods with Parameters module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Given the method signature, diff --git a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md index aea8d011c19..15877a13f97 100644 --- a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md +++ b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-visit-petting-zoo/ and complete all the tasks for the "Guided Project - Plan a Petting Zoo Visit" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Plan a Petting Zoo Visit guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What is the purpose of defining an optional parameter in a method? diff --git a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md index c7bccb05699..7e6313f4a57 100644 --- a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md +++ b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/write-first-c-sharp-method/ and complete all the tasks for the "Write Your First C# Method" module. This is **required** to earn the "Create Methods in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Write Your First C# Method module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following correctly declares a method? diff --git a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md index 52415dc17c0..88425acb0d1 100644 --- a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md +++ b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/challenge-project-debug-c-sharp-console-application/ and complete all the tasks for the "Challenge Project - Debug a C# Console Application Using Visual Studio Code" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Debug a C# Console Application Using Visual Studio Code challenge project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following options can be used set a breakpoint in Visual Studio Code? diff --git a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md index 3a43bedeeff..82396ebc624 100644 --- a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md +++ b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/create-throw-exceptions-c-sharp/ and complete all the tasks for the "Create and Throw Exceptions in C# Console Applications" module. This is **required** earn to the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Create and Throw Exceptions in C# Console Applications module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- When should a method throw an exception? diff --git a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md index c96c6dbf3d0..33d1914183f 100644 --- a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md +++ b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-debug-handle-exceptions-c-sharp-console-application/ and complete all the tasks for the "Guided Project - Debug and Handle Exceptions in a C# Console Application Using Visual Studio Code" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Debug and Handle Exceptions in a C# Console Application Using Visual Studio Code guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- When is an `ArgumentOutOfRangeException` exception thrown? diff --git a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md index a437297321d..d77786e00f0 100644 --- a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md +++ b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/implement-exception-handling-c-sharp/ and complete all the tasks for the "Implement Exception Handling in C# Console Applications" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Implement Exception Handling in C# Console Applications module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- When is an `ArrayTypeMismatchException` exception thrown? diff --git a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md index cf989a73210..eaf0a57a505 100644 --- a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md +++ b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/implement-visual-studio-code-debugging-tools/ and complete all the tasks for the "Implement the Visual Studio Code Debugging Tools for C#" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Implement the Visual Studio Code Debugging Tools for C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which section of the RUN AND DEBUG view is used to track the current point of execution within the running application? diff --git a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md index fb54c916c41..66529f25875 100644 --- a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md +++ b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/review-principles-code-debugging-exception-handling-c-sharp/ and complete all the tasks for the "Review the Principles of Code Debugging and Exception Handling" module. This is **required** to earn the "Debug C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Review the Principles of Code Debugging and Exception Handling module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What is the relationship between the type of exception and the information it contains? diff --git a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md index 57357fa507f..3283ae458e5 100644 --- a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md +++ b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/challenge-project-work-variable-data-c-sharp/ and complete all the tasks for the "Challenge Project - Work with Variable Data in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Work with Variable Data in C# challenge project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- To sort a string array, why is it important to use the `String.Trim()` method on each array element before sorting? diff --git a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md index cfc6e5f6417..90ad0c24ddc 100644 --- a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md +++ b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-choose-data-type/ and complete all the tasks for the "Choose the Correct Data Type in Your C# Code" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Choose the Correct Data Type in Your C# Code module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- A piece of code must store whole numeric values between negative and positive `1,000,000`. Which data type should you choose? diff --git a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md index 7e3cccdbf6c..2f81848ec0c 100644 --- a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md +++ b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-convert-cast/ and complete all the tasks for the "Convert Data Types Using Casting and Conversion Techniques in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Convert Data Types Using Casting and Conversion Techniques in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What type of action is being performed when changing a `float` into an `int`? diff --git a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md index 25db424abb8..4f13971f084 100644 --- a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md +++ b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-format-strings/ and complete all the tasks for the "Format Alphanumeric Data for Presentation in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Format Alphanumeric Data for Presentation in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- For the C# code `Console.WriteLine("C110".PadLeft(6, '0'));`, which is the expected output? diff --git a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md index 41a67d95996..d70b33e0034 100644 --- a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md +++ b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-work-variable-data-c-sharp/ and complete all the tasks for the "Guided Project - Work with Variable Data in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Work with Variable Data in C# guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- For the code `decimal.TryParse(numberString, out myConvert))` when the type of `numberString` is a String. diff --git a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md index 7a75db01628..f3193f3dfc2 100644 --- a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md +++ b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-modify-content/ and complete all the tasks for the "Modify the Content of Strings Using Built-In String Data Type Methods in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Modify the Content of Strings Using Built-In String Data Type Methods in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which method finds the next index of either the `-` char, the `=` char, or the `_` char? diff --git a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md index f51f67bd1d7..14353de4a63 100644 --- a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md +++ b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-arrays-operations/ and complete all the tasks for the "Perform Operations on Arrays Using Helper Methods in C#" module. This is **required** to earn the "Work with Variable Data in C# Console Applications" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Perform Operations on Arrays Using Helper Methods in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which method changes the order of items in an `string` array? diff --git a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md index 7a7836123bb..131c73af39c 100644 --- a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md +++ b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-calculate-print-student-grades/ and complete all the tasks for the "Guided Project - Calculate and Print Student Grades" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Calculate and Print Student Grades guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What is wrong with the following code? diff --git a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md index f4d5d576477..6a5491e8f12 100644 --- a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md +++ b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/guided-project-calculate-final-gpa/ and complete all the tasks for the "Guided Project - Calculate Final GPA" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Calculate Final GPA guided project on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Suppose `decimal gradePointAverage = 3.99872831m;`. diff --git a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md index 09ea0a4fd28..71e056d641f 100644 --- a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md +++ b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-basic-operations/ and complete all the tasks for the "Perform Basic Operations on Numbers in C#" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Perform Basic Operations on Numbers in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What is the value of the following result? diff --git a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md index 8fe6df7466b..6a00bd662df 100644 --- a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md +++ b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-basic-formatting/ and complete all the tasks for the "Perform Basic String Formatting in C#" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Perform Basic String Formatting in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following lines of code correctly uses string interpolation assuming that the variable `value` is a string? diff --git a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md index 8c1bb0619d3..f229f0d8387 100644 --- a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md +++ b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-literals-variables/ and complete all the tasks for the "Store and Retrieve Data Using Literal and Variable Values in C#" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Store and Retrieve Data Using Literal and Variable Values in C# module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- Which of the following lines of code creates a variable correctly? diff --git a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md index c2b06ef0c32..e9da470c2a1 100644 --- a/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md +++ b/curriculum/challenges/swahili/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md @@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll 1. Go to https://learn.microsoft.com/training/modules/csharp-write-first/ and complete all the tasks in the "Write Your First C# Code" module. This is **required** to earn the "Write Your First Code Using C#" trophy on Microsoft Learn, and qualify for the certification exam. 1. When you are finished, come back and correctly answer the question below. -# --question-- - -## --assignment-- +# --assignment-- Complete the Write Your First C# Code module on Microsoft Learn. Then, answer the question below. +# --question-- + ## --text-- What is the difference between `Console.Write` and `Console.WriteLine`? diff --git a/curriculum/challenges/ukrainian/16-the-odin-project/top-learn-html-foundations/html-foundations-question-a.md b/curriculum/challenges/ukrainian/16-the-odin-project/top-learn-html-foundations/html-foundations-question-a.md index 963456acb9f..5433aec430f 100644 --- a/curriculum/challenges/ukrainian/16-the-odin-project/top-learn-html-foundations/html-foundations-question-a.md +++ b/curriculum/challenges/ukrainian/16-the-odin-project/top-learn-html-foundations/html-foundations-question-a.md @@ -26,12 +26,12 @@ HTML має великий список стандартних тегів, як Використання правильних елементів для вмісту називається семантичною версткою, або семантичним HTML. Про це ви дізнаєтесь пізніше. -# --question-- - -## --assignment-- +# --assignment-- Перегляньте відео Кевіна Павелла про [вступ до HTML](https://www.youtube.com/watch?v=LGQuIIv2RVA&list=PL4-IK0AVhVjM0xE0K2uZRvsM7LkIhsPT-) +# --question-- + ## --text-- Що таке теги у HTML? diff --git a/curriculum/challenges/ukrainian/16-the-odin-project/top-learn-html-foundations/html-foundations-question-e.md b/curriculum/challenges/ukrainian/16-the-odin-project/top-learn-html-foundations/html-foundations-question-e.md index 02dec19efa5..f193a8fa107 100644 --- a/curriculum/challenges/ukrainian/16-the-odin-project/top-learn-html-foundations/html-foundations-question-e.md +++ b/curriculum/challenges/ukrainian/16-the-odin-project/top-learn-html-foundations/html-foundations-question-e.md @@ -11,12 +11,12 @@ HTML та CSS — це дві мови, які працюють разом, що Багато ресурсів продовжують називати HTML та CSS мовами програмування, але, якщо розібратися з технічної точки зору, це не зовсім правильно. Причина в тому, що їх використовують лише для представлення інформації. Вони не використовуються для створення логіки програми. JavaScript, який ви вивчите в наступному розділі, є мовою програмування, оскільки його використовують для того, щоб вебсторінки виконували певні дії. Однак багато чого можна зробити, використовуючи лише HTML та CSS, тому вони обов’язково знадобляться. Наступні уроки нашої навчальної програми зосереджені на інструментах, які необхідно осягнути перед тим, як перейти до JavaScript. -# --question-- - -## --assignment-- +# --assignment-- Прочитайте публікацію HTML vs CSS vs JavaScript (англійською мовою). Це короткий огляд відносин між HTML, CSS та JavaScript. +# --question-- + ## --text-- Яке з тверджень є правильним? @@ -37,5 +37,3 @@ HTML та CSS використовують для додавання стилі ## --video-solution-- 2 - - diff --git a/curriculum/challenges/ukrainian/16-the-odin-project/top-learn-html-foundations/html-foundations-question-g.md b/curriculum/challenges/ukrainian/16-the-odin-project/top-learn-html-foundations/html-foundations-question-g.md index fb403a9fec4..fbde0b09b85 100644 --- a/curriculum/challenges/ukrainian/16-the-odin-project/top-learn-html-foundations/html-foundations-question-g.md +++ b/curriculum/challenges/ukrainian/16-the-odin-project/top-learn-html-foundations/html-foundations-question-g.md @@ -12,9 +12,7 @@ dashedName: html-foundations-question-g Щоб закінчити шаблонний код, додайте елемент `body` до файлу `index.html`. Елемент `body` завжди розташований в елементі `html` та завжди знизу елемента `head`: -# --question-- - -## --assignment-- +# --assignment-- Перегляньте чудове відео Кевіна Павелла про побудову першої вебсторінки. @@ -26,6 +24,8 @@ dashedName: html-foundations-question-g Запустіть свій шаблонний код через [валідатор HTML](https://www.freeformatter.com/html-validator.html). Валідатори гарантують, що розмітка є правильною. Це чудові інструменти для навчання, оскільки вони надають відгуки про синтаксичні помилки, які ви можете час від часу допускати, навіть не здогадуючись про них (наприклад, відсутність кінцевих тегів або додавання додаткових пробілів). +# --question-- + ## --text-- Яка суть елемента `body`? diff --git a/curriculum/challenges/ukrainian/16-the-odin-project/top-links-and-images/links-and-images-question-a.md b/curriculum/challenges/ukrainian/16-the-odin-project/top-links-and-images/links-and-images-question-a.md index 31d1ce9c7d9..8927d58bab8 100644 --- a/curriculum/challenges/ukrainian/16-the-odin-project/top-links-and-images/links-and-images-question-a.md +++ b/curriculum/challenges/ukrainian/16-the-odin-project/top-links-and-images/links-and-images-question-a.md @@ -39,12 +39,12 @@ dashedName: links-and-images-question-a Важливо зазначити, що теги посилання можна використовувати для будь-яких ресурсів в інтернеті, а не лише документів HTML. Ви можете посилати на відео, файли pdf, зображення та інше, але здебільшого ви посилатимете на інші документи HTML. -# --question-- - -## --assignment-- +# --assignment-- Перегляньте відео Кевіна Павелла про посилання у HTML. +# --question-- + ## --text-- Який тег потрібно використати, щоб створити посилання у HTML? diff --git a/curriculum/challenges/ukrainian/16-the-odin-project/top-links-and-images/links-and-images-question-d.md b/curriculum/challenges/ukrainian/16-the-odin-project/top-links-and-images/links-and-images-question-d.md index 83d6d276ed2..2aa98d7fb9a 100644 --- a/curriculum/challenges/ukrainian/16-the-odin-project/top-links-and-images/links-and-images-question-d.md +++ b/curriculum/challenges/ukrainian/16-the-odin-project/top-links-and-images/links-and-images-question-d.md @@ -85,12 +85,12 @@ dashedName: links-and-images-question-d ``` -# --question-- - -## --assignment-- +# --assignment-- Перегляньте відео Кевіна Павелла про структуру файлів у HTML. +# --question-- + ## --text-- Яка різниця між абсолютним та відносним посиланням? diff --git a/curriculum/challenges/ukrainian/16-the-odin-project/top-links-and-images/links-and-images-question-e.md b/curriculum/challenges/ukrainian/16-the-odin-project/top-links-and-images/links-and-images-question-e.md index 64869cd5c17..b33decf3107 100644 --- a/curriculum/challenges/ukrainian/16-the-odin-project/top-links-and-images/links-and-images-question-e.md +++ b/curriculum/challenges/ukrainian/16-the-odin-project/top-links-and-images/links-and-images-question-e.md @@ -71,12 +71,12 @@ dashedName: links-and-images-question-e Ось так виглядає логотип The Odin Project з атрибутом `alt`: -# --question-- - -## --assignment-- +# --assignment-- Перегляньте відео Кевіна Павелла про зображення у HTML. +# --question-- + ## --text-- За допомогою якого тега показують зображення? diff --git a/curriculum/challenges/ukrainian/16-the-odin-project/top-links-and-images/links-and-images-question-h.md b/curriculum/challenges/ukrainian/16-the-odin-project/top-links-and-images/links-and-images-question-h.md index 41226a401a8..cd58041b815 100644 --- a/curriculum/challenges/ukrainian/16-the-odin-project/top-links-and-images/links-and-images-question-h.md +++ b/curriculum/challenges/ukrainian/16-the-odin-project/top-links-and-images/links-and-images-question-h.md @@ -70,12 +70,12 @@ dashedName: links-and-images-question-h Ось так виглядає логотип The Odin Project з атрибутом alt: -# --question-- - -## --assignment-- +# --assignment-- Прочитайте про чотири головні формати зображення, які можна використовувати на вебсайтах. +# --question-- + ## --text-- Які чотири головні формати зображення можна використовувати на вебсайтах? diff --git a/curriculum/challenges/ukrainian/16-the-odin-project/top-the-box-model/the-box-model-question-a.md b/curriculum/challenges/ukrainian/16-the-odin-project/top-the-box-model/the-box-model-question-a.md index 4df2721d07e..424c45bf460 100644 --- a/curriculum/challenges/ukrainian/16-the-odin-project/top-the-box-model/the-box-model-question-a.md +++ b/curriculum/challenges/ukrainian/16-the-odin-project/top-the-box-model/the-box-model-question-a.md @@ -13,12 +13,12 @@ dashedName: the-box-model-question-a Не лякайтесь всіх побачених інструментів! У цьому уроці ми фокусуватимемось на панелях елементів та стилів. -# --question-- - -## --assignment-- +# --assignment-- Розгляньте інструменти веброзробника Chrome та дізнайтесь, чи зможете відповісти на запитання. +# --question-- + ## --text-- На яких панелях в інструментах веброзробника Chrome варто фокусуватись при огляді та налагодженні HTML й CSS? diff --git a/curriculum/challenges/ukrainian/16-the-odin-project/top-the-box-model/the-box-model-question-c.md b/curriculum/challenges/ukrainian/16-the-odin-project/top-the-box-model/the-box-model-question-c.md index 29654176cb5..3b7cee75666 100644 --- a/curriculum/challenges/ukrainian/16-the-odin-project/top-the-box-model/the-box-model-question-c.md +++ b/curriculum/challenges/ukrainian/16-the-odin-project/top-the-box-model/the-box-model-question-c.md @@ -14,12 +14,12 @@ dashedName: the-box-model-question-c ![Змінений стиль](https://cdn.statically.io/gh/TheOdinProject/curriculum/f8fd38fc62578d8e8368f5303126215a492847f0/foundations/html_css/inspecting-html-and-css/imgs/03.png) -# --question-- - -## --assignment-- +# --assignment-- Розгляньте інструменти веброзробника Chrome та дізнайтесь, чи зможете відповісти на запитання. +# --question-- + ## --text-- Яка функція панелі елементів дозволяє вибрати будь-який елемент сторінки, навівши на нього? diff --git a/curriculum/challenges/ukrainian/16-the-odin-project/top-the-box-model/the-box-model-question-d.md b/curriculum/challenges/ukrainian/16-the-odin-project/top-the-box-model/the-box-model-question-d.md index 6777f140ae0..735260519a6 100644 --- a/curriculum/challenges/ukrainian/16-the-odin-project/top-the-box-model/the-box-model-question-d.md +++ b/curriculum/challenges/ukrainian/16-the-odin-project/top-the-box-model/the-box-model-question-d.md @@ -14,13 +14,12 @@ dashedName: the-box-model-question-d ![Змінений стиль](https://cdn.statically.io/gh/TheOdinProject/curriculum/f8fd38fc62578d8e8368f5303126215a492847f0/foundations/html_css/inspecting-html-and-css/imgs/03.png) - -# --question-- - -## --assignment-- +# --assignment-- Розгляньте інструменти веброзробника Chrome та дізнайтесь, чи зможете відповісти на запитання. +# --question-- + ## --text-- Яку інформацію щодо наведеного елемента можна переглянути на панелі стилів? diff --git a/curriculum/challenges/ukrainian/16-the-odin-project/top-the-box-model/the-box-model-question-f.md b/curriculum/challenges/ukrainian/16-the-odin-project/top-the-box-model/the-box-model-question-f.md index 8e65e5e8e1f..b5897a73c57 100644 --- a/curriculum/challenges/ukrainian/16-the-odin-project/top-the-box-model/the-box-model-question-f.md +++ b/curriculum/challenges/ukrainian/16-the-odin-project/top-the-box-model/the-box-model-question-f.md @@ -16,13 +16,12 @@ dashedName: the-box-model-question-f } ``` - -# --question-- - -## --assignment-- +# --assignment-- Додайте кордон до кожного елемента на сторінці та подивіться, як розміщені блоки. +# --question-- + ## --text-- Яке основне поняття у CSS дозволяє зрозуміти структуру елементів як прямокутних блоків? diff --git a/curriculum/challenges/ukrainian/16-the-odin-project/top-the-box-model/the-box-model-question-g.md b/curriculum/challenges/ukrainian/16-the-odin-project/top-the-box-model/the-box-model-question-g.md index adfab3a023b..53aa01dffe0 100644 --- a/curriculum/challenges/ukrainian/16-the-odin-project/top-the-box-model/the-box-model-question-g.md +++ b/curriculum/challenges/ukrainian/16-the-odin-project/top-the-box-model/the-box-model-question-g.md @@ -20,12 +20,12 @@ dashedName: the-box-model-question-g ![блокова модель](https://cdn.statically.io/gh/TheOdinProject/curriculum/main/foundations/html_css/css-foundations/the-box-model/imgs/box-model.png) -# --question-- - -## --assignment-- +# --assignment-- Додайте кордон до кожного елемента на сторінці та подивіться, як розміщені блоки. +# --question-- + ## --text-- Який порядок властивостей блокової моделі від середини до зовні? diff --git a/curriculum/challenges/ukrainian/16-the-odin-project/top-working-with-text/working-with-text-question-a.md b/curriculum/challenges/ukrainian/16-the-odin-project/top-working-with-text/working-with-text-question-a.md index 04462c6d076..34f5589f025 100644 --- a/curriculum/challenges/ukrainian/16-the-odin-project/top-working-with-text/working-with-text-question-a.md +++ b/curriculum/challenges/ukrainian/16-the-odin-project/top-working-with-text/working-with-text-question-a.md @@ -32,12 +32,12 @@ dashedName: working-with-text-question-a -# --question-- - -## --assignment-- +# --assignment-- Перегляньте відео Кевіна Павелла про абзаци та заголовки у HTML. +# --question-- + ## --text-- Як створити абзац у HTML? diff --git a/curriculum/challenges/ukrainian/16-the-odin-project/top-working-with-text/working-with-text-question-c.md b/curriculum/challenges/ukrainian/16-the-odin-project/top-working-with-text/working-with-text-question-c.md index 009b2deefb5..8eabef5eecb 100644 --- a/curriculum/challenges/ukrainian/16-the-odin-project/top-working-with-text/working-with-text-question-c.md +++ b/curriculum/challenges/ukrainian/16-the-odin-project/top-working-with-text/working-with-text-question-c.md @@ -20,12 +20,12 @@ dashedName: working-with-text-question-c Іноді потрібно зробити текст жирним, але не надаючи йому важливого значення. Пізніше на уроках CSS ви дізнаєтеся, як це зробити. -# --question-- - -## --assignment-- +# --assignment-- Перегляньте відео Кевіна Павелла про жирний та курсивний шрифт у HTML. +# --question-- + ## --text-- Який елемент потрібно використати, щоб зробити текст жирним та важливим? diff --git a/curriculum/challenges/ukrainian/16-the-odin-project/top-working-with-text/working-with-text-question-g.md b/curriculum/challenges/ukrainian/16-the-odin-project/top-working-with-text/working-with-text-question-g.md index f6479c31f86..a2f174e909b 100644 --- a/curriculum/challenges/ukrainian/16-the-odin-project/top-working-with-text/working-with-text-question-g.md +++ b/curriculum/challenges/ukrainian/16-the-odin-project/top-working-with-text/working-with-text-question-g.md @@ -21,12 +21,12 @@ dashedName: working-with-text-question-g ``` -# --question-- - -## --assignment-- +# --assignment-- Щоб трохи попрактикуватися в роботі з текстом у HTML, створіть звичайну сторінку із публікацією, у якій наявні різні заголовки та абзаци, а деякий текст в абзацах виділено жирним шрифтом і курсивом. Ви можете використовувати [Lorem Ipsum](https://loremipsum.io) для створення фіктивного тексту замість справжнього тексту під час створення своїх сайтів. +# --question-- + ## --text-- Як створити коментар у HTML? diff --git a/curriculum/challenges/ukrainian/16-the-odin-project/top-working-with-text/working-with-text-question-h.md b/curriculum/challenges/ukrainian/16-the-odin-project/top-working-with-text/working-with-text-question-h.md index 8995ea36ad2..a067a829054 100644 --- a/curriculum/challenges/ukrainian/16-the-odin-project/top-working-with-text/working-with-text-question-h.md +++ b/curriculum/challenges/ukrainian/16-the-odin-project/top-working-with-text/working-with-text-question-h.md @@ -22,9 +22,7 @@ dashedName: working-with-text-question-h -# --question-- - -## --assignment-- +# --assignment-- Перегляньте перші три хвилини відео Кевіна Павелла про впорядковані та невпорядковані списки. @@ -44,6 +42,8 @@ dashedName: working-with-text-question-h Зробіть впорядкований список 5 улюблених відеоігор або фільмів. +# --question-- + ## --text-- Який тег потрібно використати, щоб створити невпорядкований список у HTML? diff --git a/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-applications-of-linear-systems/word-problems.md b/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-applications-of-linear-systems/word-problems.md index 94c340881be..fc1cfaf5529 100644 --- a/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-applications-of-linear-systems/word-problems.md +++ b/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-applications-of-linear-systems/word-problems.md @@ -16,9 +16,7 @@ dashedName: word-problems \- Алгебра та тригонометрія. Джей Абрамсон -# --question-- - -## --assignment-- +# --assignment-- Розв’яжіть завдання на ст. 63, 75, 85 та 118 з підручника «Бізнес-математика: покроковий довідник (2021)». @@ -26,6 +24,8 @@ dashedName: word-problems Розв’яжіть завдання на ст. 304, 308 та 321 з підручника «Алгебра та тригонометрія». +# --question-- + ## --text-- Які з перелічених ключових слів вказують на віднімання? diff --git a/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-business-applications-of-college-algebra/demand-and-revenue.md b/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-business-applications-of-college-algebra/demand-and-revenue.md index b0179824ff3..231fd431d93 100644 --- a/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-business-applications-of-college-algebra/demand-and-revenue.md +++ b/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-business-applications-of-college-algebra/demand-and-revenue.md @@ -16,12 +16,12 @@ dashedName: demand-and-revenue \- Бізнес-математика: покроковий довідник (2021). Жан-Пол Олівер -# --question-- - -## --assignment-- +# --assignment-- Розв’яжіть завдання на ст. 155 та 163 з підручника «Бізнес-математика: покроковий довідник (2021)». +# --question-- + ## --text-- Яке з перелічених бізнес-рівнянь неправильне? diff --git a/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-fractions-and-decimals/converting-fractions-and-decimals.md b/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-fractions-and-decimals/converting-fractions-and-decimals.md index 2c6bf4861f5..0c631baebc2 100644 --- a/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-fractions-and-decimals/converting-fractions-and-decimals.md +++ b/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-fractions-and-decimals/converting-fractions-and-decimals.md @@ -12,12 +12,12 @@ dashedName: converting-fractions-and-decimals Ось блокнот Colab, використаний у цьому відео. Використайте цей код як модель та напишіть власний код для перетворення дробів та десяткових чисел. -# --question-- - -## --assignment-- +# --assignment-- Додайте код для перетворення дробів та десяткових чисел до свого блокнота Colab. +# --question-- + ## --text-- Що з переліченого правильно позначає «три сотні» у вигляді десяткового числа? diff --git a/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-fractions-and-decimals/fractions-and-decimals-extra.md b/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-fractions-and-decimals/fractions-and-decimals-extra.md index a4d05be92c3..0089ddb2f66 100644 --- a/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-fractions-and-decimals/fractions-and-decimals-extra.md +++ b/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-fractions-and-decimals/fractions-and-decimals-extra.md @@ -12,9 +12,7 @@ dashedName: fractions-and-decimals-extra Ось блокнот Colab, використаний у цьому відео. Ви можете використати його як модель. -# --question-- - -## --assignment-- +# --assignment-- Додайте код для розкладу на множники та розв’язку змінної до свого блокнота Colab. @@ -22,6 +20,8 @@ dashedName: fractions-and-decimals-extra Запустіть код у наступному блокноті, щоб попрактикуватись перетворювати дроби та десяткові числа. Як бонус, гляньте на код, який генерує приклади для практики. +# --question-- + ## --text-- Яку з перелічених мов не можна використовувати у Google Colaboratory? diff --git a/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-functions-and-graphing/functions-and-graphing-extra.md b/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-functions-and-graphing/functions-and-graphing-extra.md index 4ab7afc1309..7f9e33c3d9a 100644 --- a/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-functions-and-graphing/functions-and-graphing-extra.md +++ b/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-functions-and-graphing/functions-and-graphing-extra.md @@ -12,12 +12,12 @@ dashedName: functions-and-graphing-extra Ось блокнот Colab для цього відео. -# --question-- - -## --assignment-- +# --assignment-- Додайте код для функцій та графіків до свого блокнота Colab. +# --question-- + ## --text-- Яку бібліотеку Python ви б імпортували, щоб створити масиви, з яких можна побудувати графік? diff --git a/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-functions-and-graphing/functions.md b/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-functions-and-graphing/functions.md index a34299afaf2..14bc149261e 100644 --- a/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-functions-and-graphing/functions.md +++ b/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-functions-and-graphing/functions.md @@ -12,12 +12,12 @@ dashedName: functions Ось блокнот Colab, використаний у цьому та наступних відео. -# --question-- - -## --assignment-- +# --assignment-- Додайте код до свого блокнота Colab, який створює функції для перетворення десяткових чисел у дроби у Python. +# --question-- + ## --text-- На скільки пробілів потрібно робити відступ для кожного рядка функції, визначивши її у Python? diff --git a/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-functions-and-graphing/graphing.md b/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-functions-and-graphing/graphing.md index 04e68effff2..75577e8df30 100644 --- a/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-functions-and-graphing/graphing.md +++ b/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-functions-and-graphing/graphing.md @@ -12,9 +12,7 @@ dashedName: graphing Ось блокнот Colab для двох останніх відео, щоб ви могли побудувати власні графіки. -# --question-- - -## --assignment-- +# --assignment-- Додайте код для функцій та графіків до свого блокнота Colab. @@ -22,6 +20,8 @@ dashedName: graphing Запустіть наступний код, щоб побачити більше способів побудови графіків з використанням алгебри та Python. +# --question-- + ## --text-- Що з переліченого додасть синю лінію на графік? diff --git a/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-how-to-graph-systems-of-equations/graphing-systems.md b/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-how-to-graph-systems-of-equations/graphing-systems.md index 17f51fcd583..8bbb42e2000 100644 --- a/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-how-to-graph-systems-of-equations/graphing-systems.md +++ b/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-how-to-graph-systems-of-equations/graphing-systems.md @@ -12,12 +12,12 @@ dashedName: graphing-systems Ось блокнот Colab для цього відео. -# --question-- - -## --assignment-- +# --assignment-- Додайте код з відео до свого блокнота та проведіть над ним тести з різними функціями. +# --question-- + ## --text-- Функція `linspace()` у numpy приймає три аргументи для створення масиву. Який з перелічених аргументів вона не приймає? diff --git a/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-how-to-solve-for-x/how-to-solve-for-x-extra.md b/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-how-to-solve-for-x/how-to-solve-for-x-extra.md index abc1d66cb39..05ec9f66b13 100644 --- a/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-how-to-solve-for-x/how-to-solve-for-x-extra.md +++ b/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-how-to-solve-for-x/how-to-solve-for-x-extra.md @@ -12,9 +12,7 @@ dashedName: how-to-solve-for-x-extra Ось блокнот Colab для цього відео. Використайте його, щоб заповнити свій блокнот Colab з алгебри. -# --question-- - -## --assignment-- +# --assignment-- Додайте код з відео для інших розв’язків рівняння до свого блокнота Colab. @@ -22,6 +20,8 @@ dashedName: how-to-solve-for-x-extra Відкрийте наступний блокнот Colab, запустіть секцію та попрактикуйтесь над розв’язком прикладів з однією й двома діями. Як бонус, гляньте на код, який генерує приклади для практики. +# --question-- + ## --text-- Якщо ви імпортуєте SymPy та визначите x як змінну, то який вивід ви отримаєте з наступного коду? diff --git a/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-how-to-solve-for-x/solving-for-x.md b/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-how-to-solve-for-x/solving-for-x.md index 92b9962a4d8..6864889b4cc 100644 --- a/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-how-to-solve-for-x/solving-for-x.md +++ b/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-how-to-solve-for-x/solving-for-x.md @@ -12,12 +12,12 @@ dashedName: solving-for-x Ось блокнот Colab для цього відео. Додайте код з відео до свого блокнота з алгебри Colab, щоб побачити, як знайти х за допомогою Python. Потім (якщо хочете) змініть код, перевірте його та порівняйте з розв’язком на папері. Пам’ятайте, що рівняння повинне бути у синтаксисі Python. -# --question-- - -## --assignment-- +# --assignment-- Додайте код з відео для розв’язку рівняння до свого блокнота Colab. +# --question-- + ## --text-- Яку бібліотеку Python потрібно імпортувати, щоб розв’язати вирази зі змінними? diff --git a/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-how-to-solve-systems-of-equations/solving-systems.md b/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-how-to-solve-systems-of-equations/solving-systems.md index 8d2ac6c0d32..d5cd431ff4a 100644 --- a/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-how-to-solve-systems-of-equations/solving-systems.md +++ b/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-how-to-solve-systems-of-equations/solving-systems.md @@ -12,12 +12,12 @@ dashedName: solving-systems Ось блокнот Colab для цього відео. -# --question-- - -## --assignment-- +# --assignment-- Додайте код для розв’язку та побудови графіка систем рівнянь до свого блокнота. +# --question-- + ## --text-- Що з переліченого може виконати SymPy, але не може виконати matplotlib? diff --git a/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-linear-functions/linear-equations.md b/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-linear-functions/linear-equations.md index fcab8c91205..33dedae897f 100644 --- a/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-linear-functions/linear-equations.md +++ b/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-linear-functions/linear-equations.md @@ -12,12 +12,12 @@ dashedName: linear-equations Ось блокнот Colab для двох останніх відео, що ви могли бачити формули. -# --question-- - -## --assignment-- +# --assignment-- Додайте код для побудови графіків функції з точок чи вхідних рівнянь до свого блокнота Colab. +# --question-- + ## --text-- Ви знаєте кутовий коефіцієнт (m) та маєте одну координатну точку (x, y). Яке з перелічених рівнянь ви б використали для пошуку b, що представляє перетин з віссю y в Python? diff --git a/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-ratios-and-proportions/introduction-to-college-algebra-with-python.md b/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-ratios-and-proportions/introduction-to-college-algebra-with-python.md index bdf3ae6fbb5..0d0d38ad31c 100644 --- a/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-ratios-and-proportions/introduction-to-college-algebra-with-python.md +++ b/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-ratios-and-proportions/introduction-to-college-algebra-with-python.md @@ -16,12 +16,12 @@ dashedName: introduction-to-college-algebra-with-python \- Алгебра та тригонометрія. Джей Абрамсон -# --question-- - -## --assignment-- +# --assignment-- Створіть блокнот з алгебри Colab на своєму гугл-диску, щоб паралельно працювати з відео. +# --question-- + ## --text-- Ви додаєте текст у Google Colab. Який символ потрібно використати, щоб створити заголовок, який з’явиться у змісті? diff --git a/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-ratios-and-proportions/ratios-and-proportions-extra.md b/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-ratios-and-proportions/ratios-and-proportions-extra.md index 89a788052a8..d56683ac546 100644 --- a/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-ratios-and-proportions/ratios-and-proportions-extra.md +++ b/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-ratios-and-proportions/ratios-and-proportions-extra.md @@ -10,12 +10,12 @@ dashedName: ratios-and-proportions-extra Останнє відео цієї теми покаже, як використовувати пропорції для іншого застосування. Наприклад, для конвертації валюти чи перетворення одиниць вимірювання. Ви також дізнаєтесь більше про налаштування блокноту та виконання практичних завдань. -# --question-- - -## --assignment-- +# --assignment-- Відкрийте наступний блокнот Colab, запустіть секцію та попрактикуйтесь над роз’язком прикладів з однією дією. Як бонус, гляньте на код, який генерує приклади для практики. +# --question-- + ## --text-- Як ще можна записати 0,9999... (9 повторюється)? diff --git a/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-ratios-and-proportions/solving-proportions.md b/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-ratios-and-proportions/solving-proportions.md index 4ebab3f5b98..835c3ada8d9 100644 --- a/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-ratios-and-proportions/solving-proportions.md +++ b/curriculum/challenges/ukrainian/17-college-algebra-with-python/learn-ratios-and-proportions/solving-proportions.md @@ -12,12 +12,12 @@ dashedName: solving-proportions Ось блокнот Colab для цього відео. Налаштуйте свій блокнот з алгебри Colab, якщо ви цього досі не зробили. Потім додайте код цього відео до блокнота. -# --question-- - -## --assignment-- +# --assignment-- Додайте код з відео до блокнота з алгебри Colab, який ви створили у першому кроці. +# --question-- + ## --text-- Якщо один чисельник у пропорції є нулем, чи повинен інший чисельник також бути нулем, щоб рівність була правильною? diff --git a/curriculum/challenges/ukrainian/18-project-euler/project-euler-problems-201-to-300/problem-209-circular-logic.md b/curriculum/challenges/ukrainian/18-project-euler/project-euler-problems-201-to-300/problem-209-circular-logic.md index 48d8d066f37..ece2a19a8f9 100644 --- a/curriculum/challenges/ukrainian/18-project-euler/project-euler-problems-201-to-300/problem-209-circular-logic.md +++ b/curriculum/challenges/ukrainian/18-project-euler/project-euler-problems-201-to-300/problem-209-circular-logic.md @@ -1,6 +1,6 @@ --- id: 5900f43e1000cf542c50ff4f -title: 'Problem 209: Circular Logic' +title: 'Завдання 209: кругова логіка' challengeType: 1 forumTopicId: 301850 dashedName: problem-209-circular-logic @@ -8,7 +8,7 @@ dashedName: problem-209-circular-logic # --description-- -A $k$-input binary truth table is a map from $k$ input bits (binary digits, 0 [false] or 1 [true]) to 1 output bit. For example, the $2$-input binary truth tables for the logical $AND$ and $XOR$ functions are: +Бінарна таблиця істинності з введенням $k$ — це карта від введеного біта $k$ (бінарні цифри: 0 [false] або 1 [true]) до вихідного біта 1. Наприклад, ось таблиця істинності з введенням $2$ для логічних функцій $AND$ та $XOR$: | x | y | x AND y | | - | - | ------- | @@ -24,11 +24,11 @@ A $k$-input binary truth table is a map from $k$ input bits (binary digits, 0 [f | 1 | 0 | 1 | | 1 | 1 | 0 | -How many $6$-input binary truth tables, $τ$, satisfy the formula +Скільки бінарних таблиць істинності з введенням $6$ ($τ$) задовільняють формулу $$τ(a, b, c, d, e, f) \\; AND \\; τ(b, c, d, e, f, a \\; XOR \\; (b \\; AND \\; c)) = 0$$ -for all $6$-bit inputs ($a$, $b$, $c$, $d$, $e$, $f$)? +за всіх $6$-бітних входів ($a$, $b$, $c$, $d$, $e$, $f$)? # --hints-- diff --git a/curriculum/challenges/ukrainian/18-project-euler/project-euler-problems-201-to-300/problem-210-obtuse-angled-triangles.md b/curriculum/challenges/ukrainian/18-project-euler/project-euler-problems-201-to-300/problem-210-obtuse-angled-triangles.md index d703ebdf95e..a01e9bd69e3 100644 --- a/curriculum/challenges/ukrainian/18-project-euler/project-euler-problems-201-to-300/problem-210-obtuse-angled-triangles.md +++ b/curriculum/challenges/ukrainian/18-project-euler/project-euler-problems-201-to-300/problem-210-obtuse-angled-triangles.md @@ -1,6 +1,6 @@ --- id: 5900f43e1000cf542c50ff50 -title: 'Problem 210: Obtuse Angled Triangles' +title: 'Завдання 210: тупокутні трикутники' challengeType: 1 forumTopicId: 301852 dashedName: problem-210-obtuse-angled-triangles @@ -8,13 +8,13 @@ dashedName: problem-210-obtuse-angled-triangles # --description-- -Consider the set $S(r)$ of points ($x$,$y$) with integer coordinates satisfying $|x| + |y| ≤ r$. +Розглянемо множину $S(r)$ точок ($x$,$y$) з цілочисельними координатами, які задовільняють умову $|x| + |y| ≤ r$. -Let $O$ be the point (0,0) and $C$ the point ($\frac{r}{4}$,$\frac{r}{4}$). +Нехай $O$ буде точкою (0,0) та $C$ буде точкою ($\frac{r}{4}$,$\frac{r}{4}$). -Let $N(r)$ be the number of points $B$ in $S(r)$, so that the triangle $OBC$ has an obtuse angle, i.e. the largest angle $α$ satisfies $90°<α<180°$. +Нехай $N(r)$ буде кількістю точок $B$ в $S(r)$, за яких трикутник $OBC$ має тупий кут, тобто найбільший кут $α$ задовільняє умову $90°<α<180°$. -So, for example, $N(4)=24$ and $N(8)=100$. +Таким чином, наприклад, $N(4)=24$ та $N(8)=100$. Чому дорівнює $N(1\\,000\\,000\\,000)$? diff --git a/curriculum/challenges/ukrainian/18-project-euler/project-euler-problems-201-to-300/problem-212-combined-volume-of-cuboids.md b/curriculum/challenges/ukrainian/18-project-euler/project-euler-problems-201-to-300/problem-212-combined-volume-of-cuboids.md index 021b4f7f2b1..7960bb19b31 100644 --- a/curriculum/challenges/ukrainian/18-project-euler/project-euler-problems-201-to-300/problem-212-combined-volume-of-cuboids.md +++ b/curriculum/challenges/ukrainian/18-project-euler/project-euler-problems-201-to-300/problem-212-combined-volume-of-cuboids.md @@ -10,24 +10,24 @@ dashedName: problem-212-combined-volume-of-cuboids Вирівняний по осях прямокутний паралелепіпед, заданий параметрами $\{ (x_0,y_0,z_0), (dx,dy,dz) \}$, складається з точок ($X$,$Y$,$Z$), за яких $x_0 ≤ X ≤ x_0 + dx$, $y_0 ≤ Y ≤ y_0 + dy$ та $z_0 ≤ Z ≤ z_0 + dz$. Об’ємом прямокутного паралелепіпеда є добуток $dx × dy × dz$. Загальний об’єм декількох паралелепіпедів — це об’єм об’єднаних паралелепіпедів, а якщо вони перетинаються, то він менший за суму окремих об’ємів. -Let $C_1, \ldots, C_{50000}$ be a collection of 50000 axis-aligned cuboids such that $C_n$ has parameters +Нехай $C_1, \ldots, C_{50000}$ буде набором з 50000 вирівняних по осях прямокутних паралелепіпедів, де $C_n$ має такі параметри $$\begin{align} & x_0 = S_{6n - 5} \\; \text{modulo} \\; 10000 \\\\ & y_0 = S_{6n - 4} \\; \text{modulo} \\; 10000 \\\\ & z_0 = S_{6n - 3} \\; \text{modulo} \\; 10000 \\\\ & dx = 1 + (S_{6n - 2} \\; \text{modulo} \\; 399) \\\\ & dy = 1 + (S_{6n - 1} \\; \text{modulo} \\; 399) \\\\ & dz = 1 + (S_{6n} \\; \text{modulo} \\; 399) \\\\ \end{align}$$ -where $S_1, \ldots, S_{300000}$ come from the "Lagged Fibonacci Generator": +де $S_1, \ldots, S_{300000}$ отримуємо через генератор Фібоначчі: За умови $1 ≤ k ≤ 55$, $S_k = [100003 - 200003k + 300007k^3] \\; (modulo \\; 1000000)$ За умови $56 ≤ k$, $S_k = [S_{k - 24} + S_{k - 55}] \\; (modulo \\; 1000000)$ -Thus, $C_1$ has parameters $\{(7,53,183), (94,369,56)\}$, $C_2$ has parameters $\{(2383,3563,5079), (42,212,344)\}$, and so on. +Таким чином, $C_1$ має параметри $\{(7,53,183), (94,369,56)\}$, $C_2$ має параметри $\{(2383,3563,5079), (42,212,344)\}$ і так далі. -The combined volume of the first 100 cuboids, $C_1, \ldots, C_{100}$, is 723581599. +Загальний об’єм перших 100 прямокутних паралелепіпедів $C_1, \ldots, C_{100}$ становить 723581599. -What is the combined volume of all 50000 cuboids, $C_1, \ldots, C_{50000}$? +Яким буде загальний об’єм усіх 50000 прямокутних паралелепіпедів $C_1, \ldots, C_{50000}$? # --hints-- diff --git a/curriculum/challenges/ukrainian/18-project-euler/project-euler-problems-201-to-300/problem-214-totient-chains.md b/curriculum/challenges/ukrainian/18-project-euler/project-euler-problems-201-to-300/problem-214-totient-chains.md index 92cf59f30ae..fcb8d029687 100644 --- a/curriculum/challenges/ukrainian/18-project-euler/project-euler-problems-201-to-300/problem-214-totient-chains.md +++ b/curriculum/challenges/ukrainian/18-project-euler/project-euler-problems-201-to-300/problem-214-totient-chains.md @@ -1,6 +1,6 @@ --- id: 5900f4421000cf542c50ff55 -title: 'Problem 214: Totient Chains' +title: 'Завдання 214: ланцюги Ейлера' challengeType: 1 forumTopicId: 301856 dashedName: problem-214-totient-chains @@ -8,9 +8,9 @@ dashedName: problem-214-totient-chains # --description-- -Let $φ$ be Euler's totient function, i.e. for a natural number $n$, $φ(n)$ is the number of $k$, $1 ≤ k ≤ n$, for which $gcd(k,n) = 1$. +Нехай $φ$ буде функцією Ейлера. Тобто $φ(n)$ за натурального числа $n$ дорівнює числу таких $k$, $1 ≤ k ≤ n$, за яких $нсд(k,n) = 1$. -By iterating $φ$, each positive integer generates a decreasing chain of numbers ending in 1. E.g. if we start with 5 the sequence 5,4,2,1 is generated. Here is a listing of all chains with length 4: +При повторенні функції $φ$, кожне натуральне число утворює спадний ланцюг чисел, що закінчується одиницею. Наприклад, якщо ми почнемо з 5, то утвориться послідовність 5,4,2,1. Ось список всіх ланцюгів, які складаються з 4 цифр: $$\begin{align} 5,4,2,1 & \\\\ 7,6,2,1 & \\\\ 8,4,2,1 & \\\\ @@ -18,9 +18,9 @@ $$\begin{align} 5,4,2,1 & \\\\ 12,4,2,1 & \\\\ 14,6,2,1 & \\\\ 18,6,2,1 & \end{align}$$ -Only two of these chains start with a prime, their sum is 12. +Лише два з цих ланцюгів починаються з простого числа, їх сума становить 12. -What is the sum of all primes less than $40\\,000\\,000$ which generate a chain of length 25? +Якою буде сума всіх простих чисел, менших за $40\\,000\\,000$, які утворюють ланцюг з 25 цифр? # --hints-- diff --git a/curriculum/challenges/ukrainian/18-project-euler/project-euler-problems-201-to-300/problem-215-crack-free-walls.md b/curriculum/challenges/ukrainian/18-project-euler/project-euler-problems-201-to-300/problem-215-crack-free-walls.md index a76ae9d766f..e41853873d4 100644 --- a/curriculum/challenges/ukrainian/18-project-euler/project-euler-problems-201-to-300/problem-215-crack-free-walls.md +++ b/curriculum/challenges/ukrainian/18-project-euler/project-euler-problems-201-to-300/problem-215-crack-free-walls.md @@ -1,6 +1,6 @@ --- id: 5900f4431000cf542c50ff56 -title: 'Problem 215: Crack-free Walls' +title: 'Завдання 215: стіни без тріщин' challengeType: 1 forumTopicId: 301857 dashedName: problem-215-crack-free-walls @@ -8,15 +8,15 @@ dashedName: problem-215-crack-free-walls # --description-- -Consider the problem of building a wall out of 2×1 and 3×1 bricks (horizontal×vertical dimensions) such that, for extra strength, the gaps between horizontally-adjacent bricks never line up in consecutive layers, i.e. never form a "running crack". +Розглянемо задачу: потрібно побудувати стіну з цеглин 2×1 та 3×1 (горизонтальний × вертикальний розмір) таким чином, щоб сусідні горизонтальні цеглини не нагромаджувались в послідовні ряди. Іншими словами, щоб вони не утворювали «суцільну тріщину». -For example, the following 9×3 wall is not acceptable due to the running crack shown in red: +Наприклад, ця стіна 9×3 неправильна через тріщину, виділену червоним кольором: -9x3 wall with one lined up gap between horizontally-adjacent bricks +Стіна 9x3 з проміжками, що утворили лінію між горизонтально-прилеглими цеглинами -There are eight ways of forming a crack-free 9×3 wall, written $W(9,3) = 8$. +Існує вісім способів утворити стіну 9×3 без тріщин. Запишемо як $W(9,3) = 8$. -Calculate $W(32,10)$. +Обчисліть $W(32,10)$. # --hints-- diff --git a/curriculum/challenges/ukrainian/18-project-euler/project-euler-problems-201-to-300/problem-216-investigating-the-primality-of-numbers-of-the-form-2n2-1.md b/curriculum/challenges/ukrainian/18-project-euler/project-euler-problems-201-to-300/problem-216-investigating-the-primality-of-numbers-of-the-form-2n2-1.md index 8e834151d2a..40fe716a287 100644 --- a/curriculum/challenges/ukrainian/18-project-euler/project-euler-problems-201-to-300/problem-216-investigating-the-primality-of-numbers-of-the-form-2n2-1.md +++ b/curriculum/challenges/ukrainian/18-project-euler/project-euler-problems-201-to-300/problem-216-investigating-the-primality-of-numbers-of-the-form-2n2-1.md @@ -1,6 +1,6 @@ --- id: 5900f4451000cf542c50ff57 -title: 'Problem 216: Investigating the primality of numbers of the form 2n2-1' +title: 'Завдання 216: визначення простих чисел вигляду 2n2-1' challengeType: 1 forumTopicId: 301858 dashedName: problem-216-investigating-the-primality-of-numbers-of-the-form-2n2-1 @@ -8,15 +8,15 @@ dashedName: problem-216-investigating-the-primality-of-numbers-of-the-form-2n2-1 # --description-- -Consider numbers $t(n)$ of the form $t(n) = 2n^2 - 1$ with $n > 1$. +Розглянемо числа $t(n)$ вигляду $t(n) = 2n^2 - 1$ за умови $n > 1$. -The first such numbers are 7, 17, 31, 49, 71, 97, 127 and 161. +Такі перші числа: 7, 17, 31, 49, 71, 97, 127 та 161. -It turns out that only $49 = 7 \times 7$ and $161 = 7 \times 23$ are not prime. +Виявляється, що лише $49 = 7 \times 7$ та $161 = 7 \times 23$ не є простими числами. -For $n ≤ 10000$ there are 2202 numbers $t(n)$ that are prime. +За умови $n ≤ 10000$ існує 2202 числа $t(n)$, які є простими. -How many numbers $t(n)$ are prime for $n ≤ 50\\,000\\,000$? +Скільки чисел $t(n)$ є простими за умови $n ≤ 50\\,000\\,000$? # --hints-- diff --git a/curriculum/challenges/ukrainian/18-project-euler/project-euler-problems-201-to-300/problem-217-balanced-numbers.md b/curriculum/challenges/ukrainian/18-project-euler/project-euler-problems-201-to-300/problem-217-balanced-numbers.md index 7babb1b54e5..cb6ed8ec757 100644 --- a/curriculum/challenges/ukrainian/18-project-euler/project-euler-problems-201-to-300/problem-217-balanced-numbers.md +++ b/curriculum/challenges/ukrainian/18-project-euler/project-euler-problems-201-to-300/problem-217-balanced-numbers.md @@ -1,6 +1,6 @@ --- id: 5900f4461000cf542c50ff58 -title: 'Problem 217: Balanced Numbers' +title: 'Завдання 217: збалансовані числа' challengeType: 1 forumTopicId: 301859 dashedName: problem-217-balanced-numbers @@ -8,13 +8,13 @@ dashedName: problem-217-balanced-numbers # --description-- -A positive integer with $k$ (decimal) digits is called balanced if its first $⌈\frac{k}{2}⌉$ digits sum to the same value as its last $⌈\frac{k}{2}⌉$ digits, where $⌈x⌉$, pronounced ceiling of $x$, is the smallest integer $≥ x$, thus $⌈π⌉ = 4$ and $⌈5⌉ = 5$. +Натуральне число з $k$ (десятковими) числами називається збалансованим, якщо сума його перших $⌈\frac{k}{2}⌉$ чисел дорівнює сумі його останніх $⌈\frac{k}{2}⌉$ чисел, де $⌈x⌉$, що називається округленням $x$ вгору, є найменшим цілим числом $≥ x$. Таким чином $⌈π⌉ = 4$ та $⌈5⌉ = 5$. -So, for example, all palindromes are balanced, as is 13722. +Так, наприклад, всі паліндроми є збалансованими так само, як і 13722. -Let $T(n)$ be the sum of all balanced numbers less than $10^n$. +Нехай $T(n)$ буде сумою всіх збалансованих чисел, менших за $10^n$. -Thus: $T(1) = 45$, $T(2) = 540$ and $T(5) = 334\\,795\\,890$. +Таким чином $T(1) = 45$, $T(2) = 540$ та $T(5) = 334\\,795\\,890$. Знайдіть $T(47)\\,mod\\,3^{15}$ diff --git a/curriculum/challenges/ukrainian/18-project-euler/project-euler-problems-201-to-300/problem-218-perfect-right-angled-triangles.md b/curriculum/challenges/ukrainian/18-project-euler/project-euler-problems-201-to-300/problem-218-perfect-right-angled-triangles.md index 2967d98385b..b50cb4adce1 100644 --- a/curriculum/challenges/ukrainian/18-project-euler/project-euler-problems-201-to-300/problem-218-perfect-right-angled-triangles.md +++ b/curriculum/challenges/ukrainian/18-project-euler/project-euler-problems-201-to-300/problem-218-perfect-right-angled-triangles.md @@ -1,6 +1,6 @@ --- id: 5900f4461000cf542c50ff59 -title: 'Problem 218: Perfect right-angled triangles' +title: 'Завдання 218: ідеальні прямокутні трикутники' challengeType: 1 forumTopicId: 301860 dashedName: problem-218-perfect-right-angled-triangles @@ -8,25 +8,25 @@ dashedName: problem-218-perfect-right-angled-triangles # --description-- -Consider the right-angled triangle with sides $a=7$, $b=24$ and $c=25$. +Розглянемо прямокутний трикутник зі сторонами $a=7$, $b=24$ та $c=25$. -The area of this triangle is 84, which is divisible by the perfect numbers 6 and 28. +Площа цього трикутника дорівнює 84, що ділиться на досконалі числа 6 і 28. -Moreover it is a primitive right-angled triangle as $gcd(a,b) = 1$ and $gcd(b,c) = 1$. +До того ж це примітивний прямокутний трикутник, оскільки $нсд(a,b) = 1$ та $нсд(b,c) = 1$. -Also $c$ is a perfect square. +До того ж $c$ є квадратом цілого числа. -We will call a right-angled triangle perfect if: +Назвемо прямокутний трикутник ідеальним, якщо: -- it is a primitive right-angled triangle -- its hypotenuse is a perfect square +- це примітивний прямокутний трикутник +- його гіпотенуза є квадратом цілого числа -We will call a right-angled triangle super-perfect if: +Назвемо прямокутний трикутник надідеальним, якщо: -- it is a perfect right-angled triangle -- its area is a multiple of the perfect numbers 6 and 28. +- це ідеальний прямокутний трикутник +- його площа кратна ідеальним числам 6 та 28. -How many perfect right-angled triangles with $c ≤ {10}^{16}$ exist that are not super-perfect? +Скільки існує ідеальних прямокутних трикутників за умови $c ≤ {10}^{16}$, які не є надідеальними? # --hints-- diff --git a/curriculum/challenges/ukrainian/18-project-euler/project-euler-problems-201-to-300/problem-219-skew-cost-coding.md b/curriculum/challenges/ukrainian/18-project-euler/project-euler-problems-201-to-300/problem-219-skew-cost-coding.md index ae3d8d01c75..7038767cfaf 100644 --- a/curriculum/challenges/ukrainian/18-project-euler/project-euler-problems-201-to-300/problem-219-skew-cost-coding.md +++ b/curriculum/challenges/ukrainian/18-project-euler/project-euler-problems-201-to-300/problem-219-skew-cost-coding.md @@ -1,6 +1,6 @@ --- id: 5900f4481000cf542c50ff5a -title: 'Problem 219: Skew-cost coding' +title: 'Завдання 219: розрахунок асиметричної ціни' challengeType: 1 forumTopicId: 301861 dashedName: problem-219-skew-cost-coding @@ -8,17 +8,17 @@ dashedName: problem-219-skew-cost-coding # --description-- -Let $A$ and $B$ be bit strings (sequences of 0's and 1's). +Нехай $A$ та $B$ будуть бітовими рядками (послідовності з 0 та 1). -If $A$ is equal to the leftmost length($A$) bits of $B$, then $A$ is said to be a prefix of $B$. +Якщо $A$ дорівнює бітам найлівішої частини $B$, то $A$ називають префіксом $B$. -For example, 00110 is a prefix of 001101001, but not of 00111 or 100110. +Наприклад, 00110 є префіксом 001101001, а не 00111 або 100110. -A prefix-free code of size $n$ is a collection of $n$ distinct bit strings such that no string is a prefix of any other. For example, this is a prefix-free code of size 6: +Код без префіксу розміру $n$ — це набір $n$ окремих бітових рядків, де жоден рядок не є префіксом іншого. Наприклад, ось код без префіксу розміру 6: $$0000, 0001, 001, 01, 10, 11$$ -Now suppose that it costs one penny to transmit a '0' bit, but four pence to transmit a '1'. Then the total cost of the prefix-free code shown above is 35 pence, which happens to be the cheapest possible for the skewed pricing scheme in question. In short, we write $Cost(6) = 35$. +Припустимо, за 1 копійку можна передати 0, а за 4 копійки — 1. Тоді загальна вартість даного коду без префіксів становитиме 35 копійок, що є найдешевшою можливою ціною при асиметричній ціновій політиці. Скорочено запишемо $Cost(6) = 35$. Чому дорівнює $Cost(10^9)$? diff --git a/curriculum/challenges/ukrainian/18-project-euler/project-euler-problems-201-to-300/problem-220-heighway-dragon.md b/curriculum/challenges/ukrainian/18-project-euler/project-euler-problems-201-to-300/problem-220-heighway-dragon.md index 9260fbbb060..5480500e129 100644 --- a/curriculum/challenges/ukrainian/18-project-euler/project-euler-problems-201-to-300/problem-220-heighway-dragon.md +++ b/curriculum/challenges/ukrainian/18-project-euler/project-euler-problems-201-to-300/problem-220-heighway-dragon.md @@ -1,6 +1,6 @@ --- id: 5900f4481000cf542c50ff5b -title: 'Problem 220: Heighway Dragon' +title: 'Завдання 220: дракон Хейтуея' challengeType: 1 forumTopicId: 301863 dashedName: problem-220-heighway-dragon @@ -8,20 +8,20 @@ dashedName: problem-220-heighway-dragon # --description-- -Let $D_0$ be the two-letter string "Fa". For $n ≥ 1$, derive $D_n$ from $D_{n - 1}$ by the string-rewriting rules: +Нехай $D_0$ буде двобуквеним рядком "Fa". За умови $n ≥ 1$ отримаємо $D_n$ від $D_{n - 1}$ за правилами перепису рядків: - "a" → "aRbFR" - "b" → "LFaLb" -Thus, $D_0$ = "Fa", $D_1$ = "FaRbFR", $D_2$ = "FaRbFRRLFaLbFR", and so on. +Таким чином, $D_0$ = "Fa", $D_1$ = "FaRbFR", $D_2$ = "FaRbFRRLFaLbFR" і так далі. -These strings can be interpreted as instructions to a computer graphics program, with "F" meaning "draw forward one unit", "L" meaning "turn left 90 degrees", "R" meaning "turn right 90 degrees", and "a" and "b" being ignored. The initial position of the computer cursor is (0,0), pointing up towards (0,1). +Ці рядки можна вважати англомовною інструкцією до програми комп’ютерної графіки, де "F" означає «просунути вперед на одну одиницю», "L" — «розвернути на 90 градусів вліво», "R" — «розвернути на 90 градусів вправо», але "a" та "b" ігноруються. Комп’ютерний курсор знаходиться в початковому положенні (0,0), спрямований вгору в напрямку до (0,1). -Then $D_n$ is an exotic drawing known as the Heighway Dragon of order $n$. For example, $D_{10}$ is shown below; counting each "F" as one step, the highlighted spot at (18,16) is the position reached after 500 steps. +Тоді $D_n$ стає цікавим малюнком, відомим як «Дракон Хейтуея» порядку $n$. Наприклад, $D_{10}$ показано нижче. Якщо вважати кожен рядок "F" одним кроком, то виділена точка (18,16) буде позицією після 500 кроків. -drawing of the Heighway Dragon after 500 steps +рисунок дракона Хейтуея після 500 кроків -What is the position of the cursor after ${10}^{12}$ steps in $D_{50}$? Give your answer as a string in the form `x,y` with no spaces. +Де буде розташовано курсор після ${10}^{12}$ кроків в $D_{50}$? Надайте свою відповідь у вигляді рядка `x,y` без пробілів. # --hints-- diff --git a/curriculum/challenges/ukrainian/18-project-euler/project-euler-problems-201-to-300/problem-225-tribonacci-non-divisors.md b/curriculum/challenges/ukrainian/18-project-euler/project-euler-problems-201-to-300/problem-225-tribonacci-non-divisors.md index cdc68ad1a63..bcacc6ce3c7 100644 --- a/curriculum/challenges/ukrainian/18-project-euler/project-euler-problems-201-to-300/problem-225-tribonacci-non-divisors.md +++ b/curriculum/challenges/ukrainian/18-project-euler/project-euler-problems-201-to-300/problem-225-tribonacci-non-divisors.md @@ -1,6 +1,6 @@ --- id: 5900f44e1000cf542c50ff60 -title: 'Problem 225: Tribonacci non-divisors' +title: 'Завдання 225: неподільні числа Трібоначчі' challengeType: 1 forumTopicId: 301868 dashedName: problem-225-tribonacci-non-divisors @@ -8,13 +8,13 @@ dashedName: problem-225-tribonacci-non-divisors # --description-- -The sequence 1, 1, 1, 3, 5, 9, 17, 31, 57, 105, 193, 355, 653, 1201 ... +Послідовність 1, 1, 1, 3, 5, 9, 17, 31, 57, 105, 193, 355, 653, 1201 ... -is defined by $T_1 = T_2 = T_3 = 1$ and $T_n = T_{n - 1} + T_{n - 2} + T_{n - 3}$. +визначена як $T_1 = T_2 = T_3 = 1$ та $T_n = T_{n - 1} + T_{n - 2} + T_{n - 3}$. -It can be shown that 27 does not divide any terms of this sequence. In fact, 27 is the first odd number with this property. +Можна побачити, що жодне з цих чисел не ділиться на 27. Варто зазначити, що 27 є першим непарним числом з такою властивістю. -Find the ${124}^{\text{th}}$ odd number that does not divide any terms of the above sequence. +Знайдіть ${124}^{\text{-не}}$ непарне число, на яке не ділиться жодне число з наданої послідовності. # --hints-- diff --git a/curriculum/challenges/ukrainian/18-project-euler/project-euler-problems-201-to-300/problem-226-a-scoop-of-blancmange.md b/curriculum/challenges/ukrainian/18-project-euler/project-euler-problems-201-to-300/problem-226-a-scoop-of-blancmange.md index bd5df12de35..db166434fb5 100644 --- a/curriculum/challenges/ukrainian/18-project-euler/project-euler-problems-201-to-300/problem-226-a-scoop-of-blancmange.md +++ b/curriculum/challenges/ukrainian/18-project-euler/project-euler-problems-201-to-300/problem-226-a-scoop-of-blancmange.md @@ -1,6 +1,6 @@ --- id: 5900f4511000cf542c50ff62 -title: 'Problem 226: A Scoop of Blancmange' +title: 'Завдання 226: крива бланманже' challengeType: 1 forumTopicId: 301869 dashedName: problem-226-a-scoop-of-blancmange @@ -8,15 +8,15 @@ dashedName: problem-226-a-scoop-of-blancmange # --description-- -The blancmange curve is the set of points ($x$,$y$) such that $0 ≤ x ≤ 1$ and $\displaystyle y = \sum_{n = 0}^{\infty} \frac{s(2^nx)}{2^n}$, where $s(x)$ is the distance from $x$ to the nearest integer. +Крива бланманже — це множина точок ($x$,$y$) за умов $0 ≤ x ≤ 1$ та $\displaystyle y = \sum_{n = 0}^{\infty} \frac{s(2^nx)}{2^n}$, де $s(x)$ є відстанню від $x$ до найближчого цілого числа. -The area under the blancmange curve is equal to $\frac{1}{2}$, shown in pink in the diagram below. +Площа під кривою бланманже дорівнює $\frac{1}{2}$, як показано на рисунку нижче рожевим. -diagram of blancmange curve, with circle C shown on diagram +рисунок кривої бланманже з колом С -Let $C$ be the circle with centre ($\frac{1}{4}$,$\frac{1}{2}$) and radius $\frac{1}{4}$, shown in black in the diagram. +Нехай $C$ буде колом з центром ($\frac{1}{4}$,$\frac{1}{2}$) та радіусом $\frac{1}{4}$, як показано на рисунку чорним. -What area under the blancmange curve is enclosed by $C$? Дайте відповідь, заокруглену до восьми знаків після коми у форматі 0.abcdefgh +Яка площа під кривою бланманже обмежена колом $C$? Дайте відповідь, заокруглену до восьми знаків після коми у форматі 0.abcdefgh # --hints-- diff --git a/curriculum/challenges/ukrainian/18-project-euler/project-euler-problems-201-to-300/problem-236-luxury-hampers.md b/curriculum/challenges/ukrainian/18-project-euler/project-euler-problems-201-to-300/problem-236-luxury-hampers.md index 6a02634e085..17771d95ede 100644 --- a/curriculum/challenges/ukrainian/18-project-euler/project-euler-problems-201-to-300/problem-236-luxury-hampers.md +++ b/curriculum/challenges/ukrainian/18-project-euler/project-euler-problems-201-to-300/problem-236-luxury-hampers.md @@ -20,16 +20,16 @@ dashedName: problem-236-luxury-hampers Хоча постачальники дуже стараються доставити свій товар в ідеальному стані, псування неминуче. Продукти зіпсувались. -The suppliers compare their performance using two types of statistic: +Постачальники порівнюють свої показники, використовуючи два типи статистики: -- The five per-product spoilage rates for each supplier are equal to the number of products gone bad divided by the number of products supplied, for each of the five products in turn. -- The overall spoilage rate for each supplier is equal to the total number of products gone bad divided by the total number of products provided by that supplier. +- П’ять відсотків браку кожного продукту для постачальника дорівнюють кількості зіпсованих продуктів, поділеній на кількість доставлених продуктів, кожного продукту окремо. +- Загальний відсоток браку для постачальника дорівнює загальній кількості зіпсованих продуктів, поділеній на загальну кількість доставлених продуктів цього постачальника. -To their surprise, the suppliers found that each of the five per-product spoilage rates was worse (higher) for 'B' than for 'A' by the same factor (ratio of spoilage rates), $m > 1$; and yet, paradoxically, the overall spoilage rate was worse for 'A' than for 'B', also by a factor of $m$. +На своє здивування, постачальники виявили, що кожен з п’яти відсотків браку був гіршим (вищим) для Б, з однаковим коефіцієнтом (співвідношенням відсотків браку) $m > 1$. І все ж, парадоксально, загальний відсоток браку був гіршим для А, також з коефіцієнтом $m$. -There are thirty-five $m > 1$ for which this surprising result could have occurred, the smallest of which is $\frac{1476}{1475}$. +Існує тридцять п’ять значень $m > 1$, за яких відбувається такий результат. Найменшим є $\frac{1476}{1475}$. -What's the largest possible value of $m$? Give your answer as a string with fraction reduced to its lowest terms, in the form `u/v`. +Яке найбільше можливе значення $m$? Надайте відповідь у вигляді дробу, скороченого до найменших спільних знаменників у вигляді `u/v`. # --hints-- diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md index 008b18a0ea6..06bf7d3f48b 100644 --- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md +++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/add-looping-logic-to-your-code-using-the-do-while-and-while-statements-in-c-sharp.md @@ -12,12 +12,12 @@ dashedName: add-looping-logic-to-your-code-using-the-do-while-and-while-statemen 1. Перейдіть до https://learn.microsoft.com/training/modules/csharp-do-while/ та виконайте всі завдання модуля «Додайте логіку циклу до свого коду, використовуючи інструкції do-while та while в C#». Це **обов’язково**, щоб отримати трофей з «Додавання логіки до консольних застосунків C#» на Microsoft Learn та мати змогу скласти сертифікаційний екзамен. 1. Як тільки завершите, поверніться та дайте правильну відповідь на запитання нижче. -# --question-- - -## --assignment-- +# --assignment-- Виконайте модуль «Додайте логіку циклу до свого коду, використовуючи інструкції do-while та while в C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче. +# --question-- + ## --text-- Розробнику потрібно перебрати масив, щоб знайти елемент, який відповідає певному критерію. Яка інструкція підходить найкраще? diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md index f7913acc3f6..9196404b017 100644 --- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md +++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp.md @@ -12,12 +12,12 @@ dashedName: branch-the-flow-of-code-using-the-switch-case-construct-in-c-sharp 1. Перейдіть до https://learn.microsoft.com/training/modules/csharp-switch-case/ та виконайте всі завдання модуля «Розгалужте потік коду, використовуючи конструкцію switch-case в C#». Це **обов’язково**, щоб отримати трофей з «Додавання логіки до консольних застосунків C#» на Microsoft Learn та мати змогу скласти сертифікаційний екзамен. 1. Як тільки завершите, поверніться та дайте правильну відповідь на запитання нижче. -# --question-- - -## --assignment-- +# --assignment-- Виконайте модуль «Розгалужте потік коду, використовуючи конструкцію switch-case в C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче. +# --question-- + ## --text-- Яка мета ключового слова `break`? diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md index f77a9e70673..d53a46de9f0 100644 --- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md +++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/challenge-project-develop-branching-and-looping-structures-in-c-sharp.md @@ -12,12 +12,12 @@ dashedName: challenge-project-develop-branching-and-looping-structures-in-c-shar 1. Перейдіть до https://learn.microsoft.com/training/modules/challenge-project-develop-branching-looping-structures-c-sharp/ та виконайте всі завдання модуля «Проєкт завдання: розробіть гілкові та циклові структури в C#». Це **обов’язково**, щоб отримати трофей з «Додавання логіки до консольних застосунків C#» на Microsoft Learn та мати змогу скласти сертифікаційний екзамен. 1. Як тільки завершите, поверніться та дайте правильну відповідь на запитання нижче. -# --question-- - -## --assignment-- +# --assignment-- Виконайте проєкт завдання «Розробіть гілкові та циклові структури в C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче. +# --question-- + ## --text-- Розробнику потрібно створити інструкцію ітерації. У якому випадку краще використати інструкцію `while`, а не `do`? diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md index 327260ca3af..088f3965eb2 100644 --- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md +++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/control-variable-scope-and-logic-using-code-blocks-in-c-sharp.md @@ -12,12 +12,12 @@ dashedName: control-variable-scope-and-logic-using-code-blocks-in-c-sharp 1. Перейдіть до https://learn.microsoft.com/training/modules/csharp-code-blocks/ та виконайте всі завдання модуля «Керуйте областю та логікою змінної, використовуючи блоки коду в C#». Це **обов’язково**, щоб отримати трофей з «Додавання логіки до консольних застосунків C#» на Microsoft Learn та мати змогу скласти сертифікаційний екзамен. 1. Як тільки завершите, поверніться та дайте правильну відповідь на запитання нижче. -# --question-- - -## --assignment-- +# --assignment-- Виконайте модуль «Керуйте областю та логікою змінної, використовуючи блоки коду в C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче. +# --question-- + ## --text-- Яке з перелічених тверджень правильне щодо показу/видалення фігурних дужок в блоках коду, пов’язаних інструкцією `if`? diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md index 7bc399c1683..36258e0922e 100644 --- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md +++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/evaluate-boolean-expressions-to-make-decisions-in-c-sharp.md @@ -12,12 +12,12 @@ dashedName: evaluate-boolean-expressions-to-make-decisions-in-c-sharp 1. Перейдіть до https://learn.microsoft.com/training/modules/csharp-evaluate-boolean-expressions/ та виконайте всі завдання модуля «Оцініть булеві вирази, щоб прийняти рішення в C#». Це **обов’язково**, щоб отримати трофей з «Додавання логіки до консольних застосунків C#» на Microsoft Learn та мати змогу скласти сертифікаційний екзамен. 1. Як тільки завершите, поверніться та дайте правильну відповідь на запитання нижче. -# --question-- - -## --assignment-- +# --assignment-- Виконайте модуль «Оцініть булеві вирази, щоб прийняти рішення в C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче. +# --question-- + ## --text-- Для чого можна використати умовний оператор? diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md index 4e48c6d4c07..41d7840b129 100644 --- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md +++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/guided-project-develop-conditional-branching-and-looping-structures-in-c-sharp.md @@ -12,12 +12,12 @@ dashedName: guided-project-develop-conditional-branching-and-looping-structures- 1. Перейдіть до https://learn.microsoft.com/training/modules/guided-project-develop-conditional-branching-looping/ та виконайте всі завдання модуля «Керований проєкт: розробіть умовні гілкові та циклові структури в C#». Це **обов’язково**, щоб отримати трофей з «Додавання логіки до консольних застосунків C#» на Microsoft Learn та мати змогу скласти сертифікаційний екзамен. 1. Як тільки завершите, поверніться та дайте правильну відповідь на запитання нижче. -# --question-- - -## --assignment-- +# --assignment-- Виконайте керований проєкт «Розробіть умовні гілкові та циклові структури в C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче. +# --question-- + ## --text-- У якому випадку краще використати конструкцію `switch-case`, а не `if-elseif-else`? diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md index f88742229f6..ea3f999f7c2 100644 --- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md +++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/add-logic-to-c-sharp-console-applications/iterate-through-a-code-block-using-the-for-statement-in-c-sharp.md @@ -12,12 +12,12 @@ dashedName: iterate-through-a-code-block-using-the-for-statement-in-c-sharp 1. Перейдіть до https://learn.microsoft.com/training/modules/csharp-for/ та виконайте всі завдання модуля «Переберіть код блоку, використовуючи інструкцію for в C#». Це **обов’язково**, щоб отримати трофей з «Додавання логіки до консольних застосунків C#» на Microsoft Learn та мати змогу скласти сертифікаційний екзамен. 1. Як тільки завершите, поверніться та дайте правильну відповідь на запитання нижче. -# --question-- - -## --assignment-- +# --assignment-- Виконайте модуль «Переберіть код блоку, використовуючи інструкцію for в C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче. +# --question-- + ## --text-- Яка з перелічених інструкцій `for` правильна? diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md index 246c7f30a7c..b3cd9c91289 100644 --- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md +++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/add-decision-logic-to-your-code-using-if-else-and-else-if-statements-in-c-sharp.md @@ -12,12 +12,12 @@ dashedName: add-decision-logic-to-your-code-using-if-else-and-else-if-statements 1. Перейдіть до https://learn.microsoft.com/training/modules/csharp-if-elseif-else/ та виконайте всі завдання модуля «Додайте логіку рішень до коду, використовуючи інструкції if, else та else if в C#». Це **обов’язково**, щоб отримати трофей зі «Створення та запуск простих консольних застосунків C#» на Microsoft Learn та мати змогу скласти сертифікаційний екзамен. 1. Як тільки завершите, поверніться та дайте правильну відповідь на запитання нижче. -# --question-- - -## --assignment-- +# --assignment-- Виконайте модуль «Додайте логіку рішень до коду, використовуючи інструкції if, else та else if в C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче. +# --question-- + ## --text-- Що з переліченого не є дійсним оператором в C#? diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md index d4473e0e7a9..3b5a32e4462 100644 --- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md +++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/call-methods-from-the-dot-net-class-library-using-c-sharp.md @@ -12,12 +12,12 @@ dashedName: call-methods-from-the-dot-net-class-library-using-c-sharp 1. Перейдіть до https://learn.microsoft.com/training/modules/csharp-call-methods/ та виконайте всі завдання модуля «Викличте методи з бібліотеки класів .NET, використовуючи C#». Це **обов’язково**, щоб отримати трофей зі «Створення та запуск простих консольних застосунків C#» на Microsoft Learn та мати змогу скласти сертифікаційний екзамен. 1. Як тільки завершите, поверніться та дайте правильну відповідь на запитання нижче. -# --question-- - -## --assignment-- +# --assignment-- Виконайте модуль «Викличте методи з бібліотеки класів .NET, використовуючи C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче. +# --question-- + ## --text-- Що таке об’єкт? diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md index 8ed9be440a7..5a3a0123789 100644 --- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md +++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/challenge-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md @@ -12,12 +12,12 @@ dashedName: challenge-project-develop-foreach-and-if-elseif-else-structures-to-p 1. Перейдіть до https://learn.microsoft.com/training/modules/challenge-project-arrays-iteration-selection/ та виконайте всі завдання модуля «Проєкт завдання: розробіть структури foreach та if-elseif-else, щоб обробити дані масиву в C#». Це **обов’язково**, щоб отримати трофей зі «Створення та запуск простих консольних застосунків C#» на Microsoft Learn та мати змогу скласти сертифікаційний екзамен. 1. Як тільки завершите, поверніться та дайте правильну відповідь на запитання нижче. -# --question-- - -## --assignment-- +# --assignment-- Виконайте проєкт завдання «Розробіть структури foreach та if-elseif-else, щоб обробити дані масиву в C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче. +# --question-- + ## --text-- Розробник працює з двома іншими розробниками над оновленням застосунків. Вони використовуватимуть коментарі під час процесу оновлення. У якому випадку доречно використовувати коментарі в коді? diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md index a5e7557c238..6db97d2e345 100644 --- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md +++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/create-readable-code-with-conventions-whitespace-and-comments-in-c-sharp.md @@ -12,12 +12,12 @@ dashedName: create-readable-code-with-conventions-whitespace-and-comments-in-c-s 1. Перейдіть до https://learn.microsoft.com/training/modules/csharp-readable-code/ та виконайте всі завдання модуля «Створіть читабельний код з конвенціями, пробілами та коментарями в C#». Це **обов’язково**, щоб отримати трофей зі «Створення та запуск простих консольних застосунків C#» на Microsoft Learn та мати змогу скласти сертифікаційний екзамен. 1. Як тільки завершите, поверніться та дайте правильну відповідь на запитання нижче. -# --question-- - -## --assignment-- +# --assignment-- Виконайте модуль «Створіть читабельний код з конвенціями, пробілами та коментарями в C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче. +# --question-- + ## --text-- З якою метою краще не використовувати коментар в коді? diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md index 68aae96594f..007eb6cce65 100644 --- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md +++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/guided-project-develop-foreach-and-if-elseif-else-structures-to-process-array-data-in-c-sharp.md @@ -12,12 +12,12 @@ dashedName: guided-project-develop-foreach-and-if-elseif-else-structures-to-proc 1. Перейдіть до https://learn.microsoft.com/training/modules/guided-project-arrays-iteration-selection/ та виконайте всі завдання модуля «Керований проєкт: розробіть структури foreach та if-elseif-else, щоб обробити дані масиву в C#». Це **обов’язково**, щоб отримати трофей зі «Створення та запуск простих консольних застосунків C#» на Microsoft Learn та мати змогу скласти сертифікаційний екзамен. 1. Як тільки завершите, поверніться та дайте правильну відповідь на запитання нижче. -# --question-- - -## --assignment-- +# --assignment-- Виконайте керований проєкт «Розробіть структури foreach та if-elseif-else, щоб обробити дані масиву в C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче. +# --question-- + ## --text-- Розробник пише застосунок, який використовує цикл `foreach`, щоб перебрати масив з 20 елементами. Як тільки застосунок готовий, розробник дізнається, що масив повинен містити 40 елементів. Застосунок має розглядати 40 елементів масиву. Яке оновлення коду потрібно виконати? diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md index c409344bca9..d248cb688ca 100644 --- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md +++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/install-and-configure-visual-studio-code.md @@ -12,12 +12,12 @@ dashedName: install-and-configure-visual-studio-code 1. Перейдіть до https://learn.microsoft.com/training/modules/install-configure-visual-studio-code/ та виконайте всі завдання модуля «Встановіть та налаштуйте Visual Studio Code». Це **обов’язково**, щоб отримати трофей зі «Створення та запуск простих консольних застосунків C#» на Microsoft Learn та мати змогу скласти сертифікаційний екзамен. 1. Як тільки завершите, поверніться та дайте правильну відповідь на запитання нижче. -# --question-- - -## --assignment-- +# --assignment-- Виконайте модуль «Встановіть та налаштуйте Visual Studio Code» на Microsoft Learn. Потім дайте відповідь на запитання нижче. +# --question-- + ## --text-- Що з переліченого найкраще описує інтегроване середовище розробки (IDE)? diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md index 7ccc862dbf6..c13b1de8afa 100644 --- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md +++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-and-run-simple-c-sharp-console-applications/store-and-iterate-through-sequences-of-data-using-arrays-and-the-foreach-statement-in-c-sharp.md @@ -12,12 +12,12 @@ dashedName: store-and-iterate-through-sequences-of-data-using-arrays-and-the-for 1. Перейдіть до https://learn.microsoft.com/training/modules/csharp-arrays/ та виконайте всі завдання модуля «Збережіть та переберіть послідовність даних, використовуючи масиви та інструкцію foreach в C#». Це **обов’язково**, щоб отримати трофей зі «Створення та запуск простих консольних застосунків C#» на Microsoft Learn та мати змогу скласти сертифікаційний екзамен. 1. Як тільки завершите, поверніться та дайте правильну відповідь на запитання нижче. -# --question-- - -## --assignment-- +# --assignment-- Виконайте модуль «Збережіть та переберіть послідовність даних, використовуючи масиви та інструкцію foreach в C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче. +# --question-- + ## --text-- Яка з перелічених інструкцій foreach синтаксично правильна? diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md index 0a504ea3567..d986d8c2c52 100644 --- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md +++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/challenge-project-create-a-mini-game.md @@ -12,12 +12,12 @@ dashedName: challenge-project-create-a-mini-game 1. Перейдіть до https://learn.microsoft.com/training/modules/challenge-project-create-mini-game/ та виконайте всі завдання модуля «Проєкт завдання: створіть міні гру». Це **обов’язково**, щоб отримати трофей зі «Створення методів в консольних застосунках C#» на Microsoft Learn та мати змогу скласти сертифікаційний екзамен. 1. Як тільки завершите, поверніться та дайте правильну відповідь на запитання нижче. -# --question-- - -## --assignment-- +# --assignment-- Виконайте проєкт завдання «Створіть міні гру» на Microsoft Learn. Потім дайте відповідь на запитання нижче. +# --question-- + ## --text-- Розробник хоче створити метод, який повертає значення в масиві. Що з переліченого буде хорошим вибором для сигнатури методу? diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md index ff8aa0fdfd9..1fbfaad7e01 100644 --- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md +++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-that-return-values.md @@ -12,12 +12,12 @@ dashedName: create-c-sharp-methods-that-return-values 1. Перейдіть до https://learn.microsoft.com/training/modules/create-c-sharp-methods-return-values/ та виконайте всі завдання модуля «Створіть методи C#, які повертають значення». Це **обов’язково**, щоб отримати трофей зі «Створення методів в консольних застосунках C#» на Microsoft Learn та мати змогу скласти сертифікаційний екзамен. 1. Як тільки завершите, поверніться та дайте правильну відповідь на запитання нижче. -# --question-- - -## --assignment-- +# --assignment-- Виконайте модуль «Створіть методи C#, які повертають значення» на Microsoft Learn. Потім дайте відповідь на запитання нижче. +# --question-- + ## --text-- Що з переліченого правильно повертає значення рядка? diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md index 3cf21eefa6b..1c6cb73b6ff 100644 --- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md +++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/create-c-sharp-methods-with-parameters.md @@ -12,12 +12,12 @@ dashedName: create-c-sharp-methods-with-parameters 1. Перейдіть до https://learn.microsoft.com/training/modules/create-c-sharp-methods-parameters/ та виконайте всі завдання модуля «Створіть методи C# з параметрами». Це **обов’язково**, щоб отримати трофей зі «Створення методів в консольних застосунках C#» на Microsoft Learn та мати змогу скласти сертифікаційний екзамен. 1. Як тільки завершите, поверніться та дайте правильну відповідь на запитання нижче. -# --question-- - -## --assignment-- +# --assignment-- Виконайте метод «Створіть методи C# з параметрами» на Microsoft Learn. Потім дайте відповідь на запитання нижче. +# --question-- + ## --text-- Вам надано сигнатуру методу: diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md index 7b488cf1ce9..dc50c698ddc 100644 --- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md +++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/guided-project-plan-a-petting-zoo-visit.md @@ -12,12 +12,12 @@ dashedName: guided-project-plan-a-petting-zoo-visit 1. Перейдіть до https://learn.microsoft.com/training/modules/guided-project-visit-petting-zoo/ та виконайте всі завдання модуля «Керований проєкт: сплануйте візит до контактного зоопарку». Це **обов’язково**, щоб отримати трофей зі «Створення методів в консольних застосунках C#» на Microsoft Learn та мати змогу скласти сертифікаційний екзамен. 1. Як тільки завершите, поверніться та дайте правильну відповідь на запитання нижче. -# --question-- - -## --assignment-- +# --assignment-- Виконайте керований проєкт «Сплануйте візит до контактного зоопарку» на Microsoft Learn. Потім дайте відповідь на запитання нижче. +# --question-- + ## --text-- Навіщо потрібно визначати додатковий параметр в методі? diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md index 83d59b30a5e..f76d7f1f74d 100644 --- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md +++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/create-methods-in-c-sharp-console-applications/write-your-first-c-sharp-method.md @@ -12,12 +12,12 @@ dashedName: write-your-first-c-sharp-method 1. Перейдіть до https://learn.microsoft.com/training/modules/write-first-c-sharp-method/ та виконайте всі завдання модуля «Напишіть свій перший метод C#». Це **обов’язково**, щоб отримати трофей зі «Створення методів в консольних застосунках C#» на Microsoft Learn та мати змогу скласти сертифікаційний екзамен. 1. Як тільки завершите, поверніться та дайте правильну відповідь на запитання нижче. -# --question-- - -## --assignment-- +# --assignment-- Виконайте модуль «Напишіть свій перший метод C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче. +# --question-- + ## --text-- Що з переліченого правильно оголошує метод? diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md index 45a83cd66b3..a4897a1c2cd 100644 --- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md +++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/challenge-project-debug-a-c-sharp-console-application-using-visual-studio-code.md @@ -12,12 +12,12 @@ dashedName: challenge-project-debug-a-c-sharp-console-application-using-visual-s 1. Перейдіть до https://learn.microsoft.com/training/modules/challenge-project-debug-c-sharp-console-application/ та виконайте всі завдання модуля «Проєкт завдання: налагодьте консольний застосунок C#, використовуючи Visual Studio Code». Це **обов’язково**, щоб отримати трофей з «Налагодження консольних застосунків C#» на Microsoft Learn та мати змогу скласти сертифікаційний екзамен. 1. Як тільки завершите, поверніться та дайте правильну відповідь на запитання нижче. -# --question-- - -## --assignment-- +# --assignment-- Виконайте проєкт завдання «Налагодьте консольний застосунок C#, використовуючи Visual Studio Code» на Microsoft Learn. Потім дайте відповідь на запитання нижче. +# --question-- + ## --text-- Що з переліченого можна використати, щоб встановити точку зупинки в Visual Studio Code? diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md index 25ec5803689..56d94ac3cca 100644 --- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md +++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/create-and-throw-exceptions-in-c-sharp-console-applications.md @@ -12,12 +12,12 @@ dashedName: create-and-throw-exceptions-in-c-sharp-console-applications 1. Перейдіть до https://learn.microsoft.com/training/modules/create-throw-exceptions-c-sharp/ та виконайте всі завдання модуля «Створіть та викиньте винятки в консольних застосунках C#». Це **обов’язково**, щоб отримати трофей з «Налагодження консольних застосунків C#» на Microsoft Learn та мати змогу скласти сертифікаційний екзамен. 1. Як тільки завершите, поверніться та дайте правильну відповідь на запитання нижче. -# --question-- - -## --assignment-- +# --assignment-- Виконайте модуль «Створіть та викиньте винятки в консольних застосунках C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче. +# --question-- + ## --text-- Коли метод повинен кинути виняток? diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md index 45d286a85d2..f2c7b55ecbd 100644 --- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md +++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-application-using-visual-studio-code.md @@ -12,12 +12,12 @@ dashedName: guided-project-debug-and-handle-exceptions-in-a-c-sharp-console-appl 1. Перейдіть до https://learn.microsoft.com/training/modules/guided-project-debug-handle-exceptions-c-sharp-console-application/ та виконайте всі завдання модуля «Керований проєкт: налагодьте та обробіть винятки в консольному застосунку C#, використовуючи Visual Studio Code». Це **обов’язково**, щоб отримати трофей з «Налагодження консольних застосунків C#» на Microsoft Learn та мати змогу скласти сертифікаційний екзамен. 1. Як тільки завершите, поверніться та дайте правильну відповідь на запитання нижче. -# --question-- - -## --assignment-- +# --assignment-- Виконайте керований проєкт «Налагодьте та обробіть винятки в консольному застосунку C#, використовуючи Visual Studio Code» на Microsoft Learn. Потім дайте відповідь на запитання нижче. +# --question-- + ## --text-- Коли викидається виняток `ArgumentOutOfRangeException`? diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md index 7373a57529d..89419c0b8de 100644 --- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md +++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-exception-handling-in-c-sharp-console-applications.md @@ -12,12 +12,12 @@ dashedName: implement-exception-handling-in-c-sharp-console-applications 1. Перейдіть до https://learn.microsoft.com/training/modules/implement-exception-handling-c-sharp/ та виконайте всі завдання модуля «Імплементуйте оброблення винятків в консольних застосунках C#». Це **обов’язково**, щоб отримати трофей з «Налагодження консольних застосунків C#» на Microsoft Learn та мати змогу скласти сертифікаційний екзамен. 1. Як тільки завершите, поверніться та дайте правильну відповідь на запитання нижче. -# --question-- - -## --assignment-- +# --assignment-- Виконайте модуль «Імплементуйте оброблення винятків в консольних застосунках C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче. +# --question-- + ## --text-- Коли викидається виняток `ArrayTypeMismatchException`? diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md index f21979b996b..d89129ced56 100644 --- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md +++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/implement-the-visual-studio-code-debugging-tools-for-c-sharp.md @@ -12,12 +12,12 @@ dashedName: implement-the-visual-studio-code-debugging-tools-for-c-sharp 1. Перейдіть до https://learn.microsoft.com/training/modules/implement-visual-studio-code-debugging-tools/ та виконайте всі завдання модуля «Імплементуйте інструменти налагодження Visual Studio Code до C#». Це **обов’язково**, щоб отримати трофей з «Налагодження консольних застосунків C#» на Microsoft Learn та мати змогу скласти сертифікаційний екзамен. 1. Як тільки завершите, поверніться та дайте правильну відповідь на запитання нижче. -# --question-- - -## --assignment-- +# --assignment-- Виконайте модуль «Імплементуйте інструменти налагодження Visual Studio Code до C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче. +# --question-- + ## --text-- Який з розділів RUN AND DEBUG використовують, щоб відслідкувати поточну точку виконання в запущеному застосунку? diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md index eac312fc04e..d935dd84c09 100644 --- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md +++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/debug-c-sharp-console-applications/review-the-principles-of-code-debugging-and-exception-handling.md @@ -12,12 +12,12 @@ dashedName: review-the-principles-of-code-debugging-and-exception-handling 1. Перейдіть до https://learn.microsoft.com/training/modules/review-principles-code-debugging-exception-handling-c-sharp/ та виконайте всі завдання модуля «Перегляньте принципи налагодження коду та оброблення винятків». Це **обов’язково**, щоб отримати трофей з «Налагодження консольних застосунків C#» на Microsoft Learn та мати змогу скласти сертифікаційний екзамен. 1. Як тільки завершите, поверніться та дайте правильну відповідь на запитання нижче. -# --question-- - -## --assignment-- +# --assignment-- Виконайте модуль «Перегляньте принципи налагодження коду та оброблення винятків» на Microsoft Learn. Потім дайте відповідь на запитання нижче. +# --question-- + ## --text-- Який зв’язок між типом винятку та інформацією, яку він містить? diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md index 9cbbcda4d53..93ca783cf9f 100644 --- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md +++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/challenge-project-work-with-variable-data-in-c-sharp.md @@ -12,12 +12,12 @@ dashedName: challenge-project-work-with-variable-data-in-c-sharp 1. Перейдіть до https://learn.microsoft.com/training/modules/challenge-project-work-variable-data-c-sharp/ та виконайте всі завдання модуля «Проєкт завдання: попрацюйте з даними змінних в C#». Це **обов’язково**, щоб отримати трофей зі «Робота з даними змінних в консольних застосунках C#» на Microsoft Learn та мати змогу скласти сертифікаційний екзамен. 1. Як тільки завершите, поверніться та дайте правильну відповідь на запитання нижче. -# --question-- - -## --assignment-- +# --assignment-- Виконайте проєкт завдання «Попрацюйте з даними змінних в C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче. +# --question-- + ## --text-- Чому перед сортуванням масиву рядків важливо використовувати метод `String.Trim()` до кожного елемента масиву? diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md index fcdc5e77a3f..a2a45006e72 100644 --- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md +++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/choose-the-correct-data-type-in-your-c-sharp-code.md @@ -12,12 +12,12 @@ dashedName: choose-the-correct-data-type-in-your-c-sharp-code 1. Перейдіть до https://learn.microsoft.com/training/modules/csharp-choose-data-type/ та виконайте всі завдання модуля «Виберіть правильний тип даних в коді C#». Це **обов’язково**, щоб отримати трофей зі «Робота з даними змінних в консольних застосунках C#» на Microsoft Learn та мати змогу скласти сертифікаційний екзамен. 1. Як тільки завершите, поверніться та дайте правильну відповідь на запитання нижче. -# --question-- - -## --assignment-- +# --assignment-- Виконайте модуль «Виберіть правильний тип даних в коді C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче. +# --question-- + ## --text-- Фрагмент коду має зберігати цілі числові значення від `-1,000,000` до `1,000,000`. Який тип даних оберете? diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md index 5816cc233e1..99c09f7dd81 100644 --- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md +++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/convert-data-types-using-casting-and-conversion-techniques-in-c-sharp.md @@ -12,12 +12,12 @@ dashedName: convert-data-types-using-casting-and-conversion-techniques-in-c-shar 1. Перейдіть до https://learn.microsoft.com/training/modules/csharp-convert-cast/ та виконайте всі завдання модуля «Конвертуйте типи даних, використовуючи приведення та перетворення в C#». Це **обов’язково**, щоб отримати трофей зі «Робота з даними змінних в консольних застосунках C#» на Microsoft Learn та мати змогу скласти сертифікаційний екзамен. 1. Як тільки завершите, поверніться та дайте правильну відповідь на запитання нижче. -# --question-- - -## --assignment-- +# --assignment-- Виконайте модуль «Конвертуйте типи даних, використовуючи приведення та перетворення в C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче. +# --question-- + ## --text-- Яка дія виконується при зміні `float` на `int`? diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md index 3fbe1fdad94..e537fa65f3a 100644 --- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md +++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/format-alphanumeric-data-for-presentation-in-c-sharp.md @@ -12,12 +12,12 @@ dashedName: format-alphanumeric-data-for-presentation-in-c-sharp 1. Перейдіть до https://learn.microsoft.com/training/modules/csharp-format-strings/ та виконайте всі завдання модуля «Відформатуйте буквено-цифрові дані для представлення в C#». Це **обов’язково**, щоб отримати трофей зі «Робота з даними змінних в консольних застосунках C#» на Microsoft Learn та мати змогу скласти сертифікаційний екзамен. 1. Як тільки завершите, поверніться та дайте правильну відповідь на запитання нижче. -# --question-- - -## --assignment-- +# --assignment-- Виконайте модуль «Відформатуйте буквено-цифрові дані для представлення в C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче. +# --question-- + ## --text-- Який очікуваний вивід коду `Console.WriteLine("C110".PadLeft(6, '0'));`? diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md index b8bdeea5d46..6a913e79d8a 100644 --- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md +++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/guided-project-work-with-variable-data-in-c-sharp.md @@ -12,12 +12,12 @@ dashedName: guided-project-work-with-variable-data-in-c-sharp 1. Перейдіть до https://learn.microsoft.com/training/modules/guided-project-work-variable-data-c-sharp/ та виконайте всі завдання модуля «Керований проєкт: попрацюйте з даними змінних в C#». Це **обов’язково**, щоб отримати трофей зі «Робота з даними змінних в консольних застосунках C#» на Microsoft Learn та мати змогу скласти сертифікаційний екзамен. 1. Як тільки завершите, поверніться та дайте правильну відповідь на запитання нижче. -# --question-- - -## --assignment-- +# --assignment-- Виконайте керований проєкт «Попрацюйте з даними змінних в C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче. +# --question-- + ## --text-- Дано код `decimal.TryParse(numberString, out myConvert))`, де типом `numberString` є рядок. diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md index 043d6461df0..0338bbd4bc9 100644 --- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md +++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/modify-the-content-of-string-using-built-in-string-data-type-methods-in-c-sharp.md @@ -12,12 +12,12 @@ dashedName: modify-the-content-of-string-using-built-in-string-data-type-methods 1. Перейдіть до https://learn.microsoft.com/training/modules/csharp-modify-content/ та виконайте всі завдання модуля «Змініть вміст рядків, використовуючи вбудовані методи даних рядків в C#». Це **обов’язково**, щоб отримати трофей зі «Робота з даними змінних в консольних застосунках C#» на Microsoft Learn та мати змогу скласти сертифікаційний екзамен. 1. Як тільки завершите, поверніться та дайте правильну відповідь на запитання нижче. -# --question-- - -## --assignment-- +# --assignment-- Виконайте модуль «Змініть вміст рядків, використовуючи вбудовані методи даних рядків в C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче. +# --question-- + ## --text-- Який метод знаходить наступний індекс символа `-`, `=` або `_`? diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md index 6a4db4d3903..9e2c34ecd8e 100644 --- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md +++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/work-with-variable-data-in-c-sharp-console-applications/perform-operations-on-arrays-using-helpers-methods-in-c-sharp.md @@ -12,12 +12,12 @@ dashedName: perform-operations-on-arrays-using-helpers-methods-in-c-sharp 1. Перейдіть до https://learn.microsoft.com/training/modules/csharp-arrays-operations/ та виконайте всі завдання модуля «Виконайте операції на масивах, використовуючи допоміжні методи в C#». Це **обов’язково**, щоб отримати трофей зі «Робота з даними змінних в консольних застосунках C#» на Microsoft Learn та мати змогу скласти сертифікаційний екзамен. 1. Як тільки завершите, поверніться та дайте правильну відповідь на запитання нижче. -# --question-- - -## --assignment-- +# --assignment-- Виконайте модуль «Виконайте операції на масивах, використовуючи допоміжні методи в C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче. +# --question-- + ## --text-- Який метод змінює порядок елементів у масиві рядків? diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md index 406e846408a..e41bf13de33 100644 --- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md +++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-and-print-student-grades.md @@ -12,12 +12,12 @@ dashedName: guided-project-calculate-and-print-student-grades 1. Перейдіть до https://learn.microsoft.com/training/modules/guided-project-calculate-print-student-grades/ та виконайте всі завдання модуля «Керований проєкт: розрахунок та друк оцінок студента». Це **обов’язково**, щоб отримати трофей з «Написання першого коду за допомогою C#» на Microsoft Learn та мати змогу скласти сертифікаційний екзамен. 1. Як тільки завершите, поверніться та дайте правильну відповідь на запитання нижче. -# --question-- - -## --assignment-- +# --assignment-- Виконайте керований проєкт «Розрахунок та друк оцінок студента» на Microsoft Learn. Потім дайте відповідь на запитання нижче. +# --question-- + ## --text-- Що не так з наданим кодом? diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md index 9ddaf83590a..6de8fec70e8 100644 --- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md +++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/guided-project-calculate-final-gpa.md @@ -12,12 +12,12 @@ dashedName: guided-project-calculate-final-gpa 1. Перейдіть до https://learn.microsoft.com/training/modules/guided-project-calculate-final-gpa/ та виконайте всі завдання модуля «Керований проєкт: розрахунок GPA». Це **обов’язково**, щоб отримати трофей з «Написання першого коду за допомогою C#» на Microsoft Learn та мати змогу скласти сертифікаційний екзамен. 1. Як тільки завершите, поверніться та дайте правильну відповідь на запитання нижче. -# --question-- - -## --assignment-- +# --assignment-- Виконайте керований проєкт «Розрахунок GPA» на Microsoft Learn. Потім дайте відповідь на запитання нижче. +# --question-- + ## --text-- Припустимо, що `decimal gradePointAverage = 3.99872831m;`. diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md index f6ef3d15f02..ec326f310c0 100644 --- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md +++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-operations-on-numbers-in-c-sharp.md @@ -12,12 +12,12 @@ dashedName: perform-basic-operations-on-numbers-in-c-sharp 1. Перейдіть до https://learn.microsoft.com/training/modules/csharp-basic-operations/ та виконайте всі завдання модуля «Виконайте базові операції з числами в C#». Це **обов’язково**, щоб отримати трофей з «Написання першого коду за допомогою C#» на Microsoft Learn та мати змогу скласти сертифікаційний екзамен. 1. Як тільки завершите, поверніться та дайте правильну відповідь на запитання нижче. -# --question-- - -## --assignment-- +# --assignment-- Виконайте модуль «Виконайте базові операції з числами в C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче. +# --question-- + ## --text-- Яке значення матиме результат? diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md index 2ad4008fef6..9e18cecfa01 100644 --- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md +++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/perform-basic-string-formatting-in-c-sharp.md @@ -12,12 +12,12 @@ dashedName: perform-basic-string-formatting-in-c-sharp 1. Перейдіть до https://learn.microsoft.com/training/modules/csharp-basic-formatting/ та виконайте всі завдання модуля «Виконайте базове форматування рядків в C#». Це **обов’язково**, щоб отримати трофей з «Написання першого коду за допомогою C#» на Microsoft Learn та мати змогу скласти сертифікаційний екзамен. 1. Як тільки завершите, поверніться та дайте правильну відповідь на запитання нижче. -# --question-- - -## --assignment-- +# --assignment-- Виконайте модуль «Виконайте базове форматування рядків в C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче. +# --question-- + ## --text-- Який з перелічених рядків правильно використовує інтерполяцію рядка, припускаючи, що значення змінної є рядком? diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md index 52d945fd08c..0489c7bbc22 100644 --- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md +++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp.md @@ -12,12 +12,12 @@ dashedName: store-and-retrieve-data-using-literal-and-variable-values-in-c-sharp 1. Перейдіть до https://learn.microsoft.com/training/modules/csharp-literals-variables/ та виконайте всі завдання модуля «Збережіть та отримайте дані, використовуючи значення літералів та змінних в C#». Це **обов’язково**, щоб отримати трофей з «Написання першого коду за допомогою C#» на Microsoft Learn та мати змогу скласти сертифікаційний екзамен. 1. Як тільки завершите, поверніться та дайте правильну відповідь на запитання нижче. -# --question-- - -## --assignment-- +# --assignment-- Виконайте модуль «Збережіть та отримайте дані, використовуючи значення літералів та змінних в C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче. +# --question-- + ## --text-- Який з перелічених рядків правильно створює змінну? diff --git a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md index e2fa746d744..a4a5b5fa6f6 100644 --- a/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md +++ b/curriculum/challenges/ukrainian/19-foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/write-your-first-c-sharp-code.md @@ -12,12 +12,12 @@ dashedName: write-your-first-c-sharp-code 1. Перейдіть до https://learn.microsoft.com/training/modules/csharp-write-first/ та виконайте всі завдання модуля «Напишіть свій перший код C#». Це **обов’язково**, щоб отримати трофей з «Написання першого коду за допомогою C#» на Microsoft Learn та мати змогу скласти сертифікаційний екзамен. 1. Як тільки завершите, поверніться та дайте правильну відповідь на запитання нижче. -# --question-- - -## --assignment-- +# --assignment-- Виконайте модуль «Напишіть свій перший код C#» на Microsoft Learn. Потім дайте відповідь на запитання нижче. +# --question-- + ## --text-- Яка різниця між `Console.Write` та `Console.WriteLine`?