chore(i18n,learn): processed translations (#52196)

This commit is contained in:
camperbot
2023-11-01 08:37:07 -07:00
committed by GitHub
parent 4919ac65fd
commit 877cdc7e0c
703 changed files with 2148 additions and 2188 deletions

View File

@@ -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 Powells [Introduction to HTML video](https://www.youtube.com/watch?v=LGQuIIv2RVA&list=PL4-IK0AVhVjM0xE0K2uZRvsM7LkIhsPT-)
# --question--
## --text--
What are HTML tags?

View File

@@ -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 its 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 <a href="https://brytdesigns.com/html-css-javascript-whats-the-difference#What_is_HTML" target="_blank">the HTML vs CSS vs JavaScript article</a>. 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

View File

@@ -12,9 +12,7 @@ The final element needed to complete the HTML boilerplate is the `<body>` 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 Powells 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 arent aware of, such as missing closing tags and extra spaces in your HTML.
# --question--
## --text--
What is the purpose of the `body` element?

View File

@@ -39,12 +39,12 @@ By default, any text wrapped with an anchor tag without a `href` attribute will
Its 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 Powells HTML Links video above.
# --question--
## --text--
What HTML tag is used to create a link?

View File

@@ -85,12 +85,12 @@ In many cases, this will work just fine; however, you can still run into unexpec
</body>
```
# --question--
## --assignment--
# --assignment--
Watch Kevin Powells HTML File Structure video above.
# --question--
## --text--
What is the difference between an absolute and a relative link?

View File

@@ -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:
<iframe allowfullscreen="true" allowpaymentrequest="true" allowtransparency="true" class="cp_embed_iframe " frameborder="0" height="300" width="100%" name="cp_embed_2" scrolling="no" src="https://codepen.io/TheOdinProjectExamples/embed/ExXjoEp?height=300&amp;theme-id=dark&amp;default-tab=html%2Cresult&amp;slug-hash=ExXjoEp&amp;user=TheOdinProjectExamples&amp;name=cp_embed_2" style="width: 100%; overflow:hidden; display:block;" title="CodePen Embed" loading="lazy" id="cp_embed_ExXjoEp"></iframe>
# --question--
## --assignment--
# --assignment--
Watch Kevin Powells HTML Images Video above.
# --question--
## --text--
Which tag is used to display an image?

View File

@@ -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:
<iframe allowfullscreen="true" allowpaymentrequest="true" allowtransparency="true" class="cp_embed_iframe " frameborder="0" height="300" width="100%" name="cp_embed_2" scrolling="no" src="https://codepen.io/TheOdinProjectExamples/embed/ExXjoEp?height=300&amp;theme-id=dark&amp;default-tab=html%2Cresult&amp;slug-hash=ExXjoEp&amp;user=TheOdinProjectExamples&amp;name=cp_embed_2" style="width: 100%; overflow:hidden; display:block;" title="CodePen Embed" loading="lazy" id="cp_embed_ExXjoEp"></iframe>
# --question--
## --assignment--
# --assignment--
Read about the <a href="https://www.internetingishard.com/html-and-css/links-and-images/#image-formats" target="_blank">four main image formats</a> 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?

View File

@@ -13,12 +13,12 @@ To open up the inspector, you can right-click on any element of a webpage and cl
Dont get overwhelmed with all the tools youre 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?

View File

@@ -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?

View File

@@ -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?

View File

@@ -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?

View File

@@ -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?

View File

@@ -32,12 +32,12 @@ Changing our example from before to use paragraph elements fixes the issue:
<iframe allowfullscreen="true" allowpaymentrequest="true" allowtransparency="true" class="cp_embed_iframe " frameborder="0" height="300" width="100%" name="cp_embed_2" scrolling="no" src="https://codepen.io/TheOdinProjectExamples/embed/mdwbmdp?height=300&amp;theme-id=dark&amp;default-tab=html%2Cresult&amp;slug-hash=mdwbmdp&amp;user=TheOdinProjectExamples&amp;name=cp_embed_2" style="width: 100%; overflow:hidden; display:block;" title="CodePen Embed" loading="lazy" id="cp_embed_mdwbmdp"></iframe>
# --question--
## --assignment--
# --assignment--
Watch and follow along to Kevin Powells HTML Paragraph and Headings Video above.
# --question--
## --text--
How do you create a paragraph in HTML?

View File

@@ -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. Youll learn how to do that in the CSS lessons later in the curriculum.
# --question--
## --assignment--
# --assignment--
Watch Kevin Powells HTML Bold and Italic Text Video above.
# --question--
## --text--
What element should you use to make text bold and important?

View File

@@ -21,12 +21,12 @@ Writing an HTML comment is simple: You just enclose the comment with `<!--` and
<!-- I am another html comment -->
```
# --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?

View File

@@ -22,9 +22,7 @@ Ordered lists are created using the `<ol>` element. Each individual item in them
<iframe allowfullscreen="true" allowpaymentrequest="true" allowtransparency="true" class="cp_embed_iframe " frameborder="0" height="300" width="100%" name="cp_embed_2" scrolling="no" src="https://codepen.io/TheOdinProjectExamples/embed/yLXYvYp?height=300&amp;theme-id=dark&amp;default-tab=html%2Cresult&amp;slug-hash=yLXYvYp&amp;user=TheOdinProjectExamples&amp;name=cp_embed_2" style="width: 100%; overflow:hidden; display:block;" title="CodePen Embed" loading="lazy" id="cp_embed_yLXYvYp"></iframe>
# --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 youd 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?

View File

@@ -16,9 +16,7 @@ This first video will look at key words that tell you what math operation to use
\- <a href="https://openstax.org/details/books/algebra-and-trigonometry" target="_blank" rel="noopener noreferrer nofollow">Algebra and Trigonometry by Jay Abramson</a>
# --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?

View File

@@ -16,12 +16,12 @@ Here is the <a href="https://colab.research.google.com/drive/1foxkSd90q1tHCSqyY6
\- <a href="https://lyryx.com/subjects/business/business-mathematics/" target="_blank" rel="noopener noreferrer nofollow">Business Math, a Step-by-Step Handbook (2021) by Jean-Paul Oliver</a>
# --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?

View File

@@ -12,12 +12,12 @@ The first video will show you how to convert between fractions, decimals, and pe
Here is the <a href="https://colab.research.google.com/drive/1dgeEEODP7cwm_96_JqbjxxJhVpZcFfGe?usp=sharing#scrollTo=NkMTAVF0BlqE" target="_blank" rel="noopener noreferrer nofollow">Colab notebook used in the video.</a> 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?

View File

@@ -12,9 +12,7 @@ The following video will show you one way to set up your Google Colaboratory not
Here is <a href="https://colab.research.google.com/drive/1a_RtRtVfeO0m2528T4V-bCXozWf3HpM7?usp=sharing" target="_blank" rel="noopener noreferrer nofollow">the Colab notebook used in this video</a> 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 <a href="https://colab.research.google.com/drive/1qON4GYbMkaZJA7MYd7-RcDROOkuuBJg9?usp=sharing" target="_blank" rel="noopener noreferrer nofollow">practice converting fractions and decimals.</a> 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?

View File

@@ -12,12 +12,12 @@ This next video will show you the connection between functions and graphing. Not
Here is the <a href="https://colab.research.google.com/drive/1UYorWd9-Btf_ZQyA9YdUzxzKR8rnVrSV" target="_blank" rel="noopener noreferrer nofollow">Colab notebook to go with this video.</a>
# --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?

View File

@@ -12,12 +12,12 @@ This first video will show you what it means to be a function, and then it will
Here is the <a href="https://colab.research.google.com/drive/1d0e55NoKjKILIum34POv04h0OLpE_pkn" target="_blank" rel="noopener noreferrer nofollow">Colab notebook used in this and the next videos.</a>
# --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?

View File

@@ -12,9 +12,7 @@ This next video will show you the connection between functions and graphing. Not
Here is the <a href="https://colab.research.google.com/drive/1UYorWd9-Btf_ZQyA9YdUzxzKR8rnVrSV#scrollTo=yJiVB8wdHRxS" target="_blank" rel="noopener noreferrer nofollow">Colab notebook to go with the last two videos</a> 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 <a href="https://colab.research.google.com/drive/1UYorWd9-Btf_ZQyA9YdUzxzKR8rnVrSV#scrollTo=yJiVB8wdHRxS" target="_blank" rel="noopener noreferrer nofollow">more ways to create graphs using algebra and Python.</a>
# --question--
## --text--
Which of the following would put a blue line on a graph?

View File

@@ -12,12 +12,12 @@ This first video will show you how to graph systems of equations with written ma
Here is the <a href="https://colab.research.google.com/drive/1N1JEZJctODxsntROnmg0VqMSHXYdIlFD?usp=sharing" target="_blank" rel="noopener noreferrer nofollow">Colab notebook used in this video.</a>
# --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?

View File

@@ -12,9 +12,7 @@ This video will go deeper, with more examples of how to use SymPy solve. It will
Here is the <a href="https://colab.research.google.com/drive/1Jv6WxW93J_1GZao8DkNb4X0D93oVibbs" target="_blank" rel="noopener noreferrer nofollow">Colab notebook to go along with this video.</a> 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 <a href="https://colab.research.google.com/drive/1XjmHoERFKcvol7FPidQE-wgdvR82HV45" target="_blank" rel="noopener noreferrer nofollow">practice solving one and two-step algebra problems.</a> 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?

View File

@@ -12,12 +12,12 @@ This first video will show you the essence of algebra and then how Python code d
Here is the <a href="https://colab.research.google.com/drive/11Zi77gs1FKoEqfPqYa2HtTENiWZyQAO2?usp=sharing" target="_blank" rel="noopener noreferrer nofollow">Colab notebook to go along with this video.</a> 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?

View File

@@ -12,12 +12,12 @@ The first video will show you the math behind solving a system of two equations
Here is the <a href="https://colab.research.google.com/drive/1UfyQiXCedAAv5kcqgi_pGYV-HkSgN8YD?usp=sharing" target="_blank" rel="noopener noreferrer nofollow">Colab notebook used in this video.</a>
# --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?

View File

@@ -12,12 +12,12 @@ This video will show you the math behind finding the y-intercept in a linear fun
Here is the <a href="https://colab.research.google.com/drive/1UJ1w-XFTuCfK6FI3H2GT0lbxd2HO3tQ6?usp=sharing" target="_blank" rel="noopener noreferrer nofollow">Colab notebook to go with the last two videos,</a> 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?

View File

@@ -16,12 +16,12 @@ This first video includes an introduction to the course, how it will work, and h
\- <a href="https://openstax.org/details/books/algebra-and-trigonometry" target="_blank" rel="noopener noreferrer nofollow">Algebra and Trigonometry by Jay Abramson</a>
# --question--
## --assignment--
# --assignment--
Create an algebra <a href="https://drive.google.com/" target="_blank" rel="noopener noreferrer nofollow">Colab notebook on your google drive</a> 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?

View File

@@ -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 <a href="https://colab.research.google.com/drive/1XjmHoERFKcvol7FPidQE-wgdvR82HV45" target="_blank" rel="noopener noreferrer nofollow">practice solving one-step algebra problems.</a> As a bonus, look at the code that generates the practice problems.
# --question--
## --text--
What is another way to write 0.9999... (repeating 9)?

View File

@@ -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 <a href="https://colab.research.google.com/drive/1Q7nCcbrnoYttkwiHB_nQ-X1JuLpUmtRD?usp=sharing" target="_blank" rel="noopener noreferrer nofollow">Colab notebook to go along with this video.</a> 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?

View File

@@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll
1. Go to <a href="https://learn.microsoft.com/training/modules/csharp-do-while/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-do-while/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-do-while/" target="_blank" rel="noreferrer">Add Looping Logic to Your Code Using the `do`-`while` and `while` Statements in C#</a> 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?

View File

@@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll
1. Go to <a href="https://learn.microsoft.com/training/modules/csharp-switch-case/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-switch-case/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-switch-case/" target="_blank" rel="noreferrer">Branch the Flow of Code Using the `switch`-`case` Construct in C#</a> module on Microsoft Learn. Then, answer the question below.
# --question--
## --text--
What is the purpose of the `break` keyword?

View File

@@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll
1. Go to <a href="https://learn.microsoft.com/training/modules/challenge-project-develop-branching-looping-structures-c-sharp/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/challenge-project-develop-branching-looping-structures-c-sharp/</a> 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 <a href="https://learn.microsoft.com/training/modules/challenge-project-develop-branching-looping-structures-c-sharp/" target="_blank" rel="noreferrer">Develop Branching and Looping Structures in C#</a> 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?

View File

@@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll
1. Go to <a href="https://learn.microsoft.com/training/modules/csharp-code-blocks/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-code-blocks/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-code-blocks/" target="_blank" rel="noreferrer">Control Variable Scope and Logic Using Code Blocks in C#</a> 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?

View File

@@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll
1. Go to <a href="https://learn.microsoft.com/training/modules/csharp-evaluate-boolean-expressions/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-evaluate-boolean-expressions/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-evaluate-boolean-expressions/" target="_blank" rel="noreferrer">Evaluate Boolean Expressions to Make Decisions in C#</a> 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?

View File

@@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll
1. Go to <a href="https://learn.microsoft.com/training/modules/guided-project-develop-conditional-branching-looping/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/guided-project-develop-conditional-branching-looping/</a> 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 <a href="https://learn.microsoft.com/training/modules/guided-project-develop-conditional-branching-looping/" target="_blank" rel="noreferrer">Develop Conditional Branching and Looping Structures in C#</a> 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?

View File

@@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll
1. Go to <a href="https://learn.microsoft.com/training/modules/csharp-for/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-for/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-for/" target="_blank" rel="noreferrer">Iterate Through a Code Block Using the `for` Statement in C#</a> module on Microsoft Learn. Then, answer the question below.
# --question--
## --text--
Which of the following `for` statements is correct?

View File

@@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll
1. Go to <a href="https://learn.microsoft.com/training/modules/csharp-if-elseif-else/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-if-elseif-else/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-if-elseif-else/" target="_blank" rel="noreferrer">Add Decision Logic to Your Code Using `if`, `else`, and `else if` Statements in C#</a> module on Microsoft Learn. Then, answer the question below.
# --question--
## --text--
Which of the choices below is not a valid operator in C#?

View File

@@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll
1. Go to <a href="https://learn.microsoft.com/training/modules/csharp-call-methods/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-call-methods/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-call-methods/" target="_blank" rel="noreferrer">Call Methods from the .NET Class Library Using C#</a> module on Microsoft Learn. Then, answer the question below.
# --question--
## --text--
What is an object?

View File

@@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll
1. Go to <a href="https://learn.microsoft.com/training/modules/challenge-project-arrays-iteration-selection/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/challenge-project-arrays-iteration-selection/</a> 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 <a href="https://learn.microsoft.com/training/modules/challenge-project-arrays-iteration-selection/" target="_blank" rel="noreferrer">Develop `foreach` and `if`-`elseif`-`else` Structures to Process Array Data in C#</a> 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?

View File

@@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll
1. Go to <a href="https://learn.microsoft.com/training/modules/csharp-readable-code/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-readable-code/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-readable-code/" target="_blank" rel="noreferrer">Create Readable Code with Conventions, Whitespace, and Comments in C#</a> module on Microsoft Learn. Then, answer the question below.
# --question--
## --text--
Which of the following is a bad reason to use a code comment?

View File

@@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll
1. Go to <a href="https://learn.microsoft.com/training/modules/guided-project-arrays-iteration-selection/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/guided-project-arrays-iteration-selection/</a> 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 <a href="https://learn.microsoft.com/training/modules/guided-project-arrays-iteration-selection/" target="_blank" rel="noreferrer">Develop `foreach` and `if`-`elseif`-`else` Structures to Process Array Data in C#</a> 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?

View File

@@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll
1. Go to <a href="https://learn.microsoft.com/training/modules/install-configure-visual-studio-code/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/install-configure-visual-studio-code/</a> 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 <a href="https://learn.microsoft.com/training/modules/install-configure-visual-studio-code/" target="_blank" rel="noreferrer">Install and Configure Visual Studio Code</a> 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)?

View File

@@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll
1. Go to <a href="https://learn.microsoft.com/training/modules/csharp-arrays/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-arrays/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-arrays/" target="_blank" rel="noreferrer">Store and Iterate Through Sequences of Data Using Arrays and the `foreach` Statement in C#</a> module on Microsoft Learn. Then, answer the question below.
# --question--
## --text--
Which of the following foreach statements is syntactically correct?

View File

@@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll
1. Go to <a href="https://learn.microsoft.com/training/modules/challenge-project-create-mini-game/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/challenge-project-create-mini-game/</a> 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 <a href="https://learn.microsoft.com/training/modules/challenge-project-create-mini-game/" target="_blank" rel="noreferrer">Create a Mini-Game</a> 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?

View File

@@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll
1. Go to <a href="https://learn.microsoft.com/training/modules/create-c-sharp-methods-return-values/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/create-c-sharp-methods-return-values/</a> 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 <a href="https://learn.microsoft.com/training/modules/create-c-sharp-methods-return-values/" target="_blank" rel="noreferrer">Create C# Methods that Return Values</a> module on Microsoft Learn. Then, answer the question below.
# --question--
## --text--
Which of the following options correctly returns a `string` value?

View File

@@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll
1. Go to <a href="https://learn.microsoft.com/training/modules/create-c-sharp-methods-parameters/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/create-c-sharp-methods-parameters/</a> 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 <a href="https://learn.microsoft.com/training/modules/create-c-sharp-methods-parameters/" target="_blank" rel="noreferrer">Create C# Methods with Parameters</a> module on Microsoft Learn. Then, answer the question below.
# --question--
## --text--
Given the method signature,

View File

@@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll
1. Go to <a href="https://learn.microsoft.com/training/modules/guided-project-visit-petting-zoo/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/guided-project-visit-petting-zoo/</a> 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 <a href="https://learn.microsoft.com/training/modules/guided-project-visit-petting-zoo/" target="_blank" rel="noreferrer">Plan a Petting Zoo Visit</a> guided project on Microsoft Learn. Then, answer the question below.
# --question--
## --text--
What is the purpose of defining an optional parameter in a method?

View File

@@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll
1. Go to <a href="https://learn.microsoft.com/training/modules/write-first-c-sharp-method/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/write-first-c-sharp-method/</a> 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 <a href="https://learn.microsoft.com/training/modules/write-first-c-sharp-method/" target="_blank" rel="noreferrer">Write Your First C# Method</a> module on Microsoft Learn. Then, answer the question below.
# --question--
## --text--
Which of the following correctly declares a method?

View File

@@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll
1. Go to <a href="https://learn.microsoft.com/training/modules/challenge-project-debug-c-sharp-console-application/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/challenge-project-debug-c-sharp-console-application/</a> 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 <a href="https://learn.microsoft.com/training/modules/challenge-project-debug-c-sharp-console-application/" target="_blank" rel="noreferrer">Debug a C# Console Application Using Visual Studio Code</a> 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?

View File

@@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll
1. Go to <a href="https://learn.microsoft.com/training/modules/create-throw-exceptions-c-sharp/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/create-throw-exceptions-c-sharp/</a> 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 <a href="https://learn.microsoft.com/training/modules/create-throw-exceptions-c-sharp/" target="_blank" rel="noreferrer">Create and Throw Exceptions in C# Console Applications</a> module on Microsoft Learn. Then, answer the question below.
# --question--
## --text--
When should a method throw an exception?

View File

@@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll
1. Go to <a href="https://learn.microsoft.com/training/modules/guided-project-debug-handle-exceptions-c-sharp-console-application/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/guided-project-debug-handle-exceptions-c-sharp-console-application/</a> 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 <a href="https://learn.microsoft.com/training/modules/guided-project-debug-handle-exceptions-c-sharp-console-application/" target="_blank" rel="noreferrer">Debug and Handle Exceptions in a C# Console Application Using Visual Studio Code</a> guided project on Microsoft Learn. Then, answer the question below.
# --question--
## --text--
When is an `ArgumentOutOfRangeException` exception thrown?

View File

@@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll
1. Go to <a href="https://learn.microsoft.com/training/modules/implement-exception-handling-c-sharp/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/implement-exception-handling-c-sharp/</a> 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 <a href="https://learn.microsoft.com/training/modules/implement-exception-handling-c-sharp/" target="_blank" rel="noreferrer">Implement Exception Handling in C# Console Applications</a> module on Microsoft Learn. Then, answer the question below.
# --question--
## --text--
When is an `ArrayTypeMismatchException` exception thrown?

View File

@@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll
1. Go to <a href="https://learn.microsoft.com/training/modules/implement-visual-studio-code-debugging-tools/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/implement-visual-studio-code-debugging-tools/</a> 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 <a href="https://learn.microsoft.com/training/modules/implement-visual-studio-code-debugging-tools/" target="_blank" rel="noreferrer">Implement the Visual Studio Code Debugging Tools for C#</a> 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?

View File

@@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll
1. Go to <a href="https://learn.microsoft.com/training/modules/review-principles-code-debugging-exception-handling-c-sharp/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/review-principles-code-debugging-exception-handling-c-sharp/</a> 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 <a href="https://learn.microsoft.com/training/modules/review-principles-code-debugging-exception-handling-c-sharp/" target="_blank" rel="noreferrer">Review the Principles of Code Debugging and Exception Handling</a> 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?

View File

@@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll
1. Go to <a href="https://learn.microsoft.com/training/modules/challenge-project-work-variable-data-c-sharp/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/challenge-project-work-variable-data-c-sharp/</a> 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 <a href="https://learn.microsoft.com/training/modules/challenge-project-work-variable-data-c-sharp/" target="_blank" rel="noreferrer">Work with Variable Data in C#</a> 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?

View File

@@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll
1. Go to <a href="https://learn.microsoft.com/training/modules/csharp-choose-data-type/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-choose-data-type/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-choose-data-type/" target="_blank" rel="noreferrer">Choose the Correct Data Type in Your C# Code</a> 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?

View File

@@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll
1. Go to <a href="https://learn.microsoft.com/training/modules/csharp-convert-cast/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-convert-cast/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-convert-cast/" target="_blank" rel="noreferrer">Convert Data Types Using Casting and Conversion Techniques in C#</a> 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`?

View File

@@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll
1. Go to <a href="https://learn.microsoft.com/training/modules/csharp-format-strings/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-format-strings/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-format-strings/" target="_blank" rel="noreferrer">Format Alphanumeric Data for Presentation in C#</a> 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?

View File

@@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll
1. Go to <a href="https://learn.microsoft.com/training/modules/guided-project-work-variable-data-c-sharp/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/guided-project-work-variable-data-c-sharp/</a> 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 <a href="https://learn.microsoft.com/training/modules/guided-project-work-variable-data-c-sharp/" target="_blank" rel="noreferrer">Work with Variable Data in C#</a> 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.

View File

@@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll
1. Go to <a href="https://learn.microsoft.com/training/modules/csharp-modify-content/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-modify-content/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-modify-content/" target="_blank" rel="noreferrer">Modify the Content of Strings Using Built-In String Data Type Methods in C#</a> 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?

View File

@@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll
1. Go to <a href="https://learn.microsoft.com/training/modules/csharp-arrays-operations/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-arrays-operations/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-arrays-operations/" target="_blank" rel="noreferrer">Perform Operations on Arrays Using Helper Methods in C#</a> module on Microsoft Learn. Then, answer the question below.
# --question--
## --text--
Which method changes the order of items in an `string` array?

View File

@@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll
1. Go to <a href="https://learn.microsoft.com/training/modules/guided-project-calculate-print-student-grades/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/guided-project-calculate-print-student-grades/</a> 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 <a href="https://learn.microsoft.com/training/modules/guided-project-calculate-print-student-grades/" target="_blank" rel="noreferrer">Calculate and Print Student Grades</a> guided project on Microsoft Learn. Then, answer the question below.
# --question--
## --text--
What is wrong with the following code?

View File

@@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll
1. Go to <a href="https://learn.microsoft.com/training/modules/guided-project-calculate-final-gpa/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/guided-project-calculate-final-gpa/</a> 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 <a href="https://learn.microsoft.com/training/modules/guided-project-calculate-final-gpa/" target="_blank" rel="noreferrer">Calculate Final GPA</a> guided project on Microsoft Learn. Then, answer the question below.
# --question--
## --text--
Suppose `decimal gradePointAverage = 3.99872831m;`.

View File

@@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll
1. Go to <a href="https://learn.microsoft.com/training/modules/csharp-basic-operations/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-basic-operations/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-basic-operations/" target="_blank" rel="noreferrer">Perform Basic Operations on Numbers in C#</a> module on Microsoft Learn. Then, answer the question below.
# --question--
## --text--
What is the value of the following result?

View File

@@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll
1. Go to <a href="https://learn.microsoft.com/training/modules/csharp-basic-formatting/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-basic-formatting/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-basic-formatting/" target="_blank" rel="noreferrer">Perform Basic String Formatting in C#</a> 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?

View File

@@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll
1. Go to <a href="https://learn.microsoft.com/training/modules/csharp-literals-variables/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-literals-variables/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-literals-variables/" target="_blank" rel="noreferrer">Store and Retrieve Data Using Literal and Variable Values in C#</a> module on Microsoft Learn. Then, answer the question below.
# --question--
## --text--
Which of the following lines of code creates a variable correctly?

View File

@@ -12,12 +12,12 @@ This challenge will be partially completed on the Microsoft Learn platform. Foll
1. Go to <a href="https://learn.microsoft.com/training/modules/csharp-write-first/" target="_blank" rel="noreferrer">https://learn.microsoft.com/training/modules/csharp-write-first/</a> 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 <a href="https://learn.microsoft.com/training/modules/csharp-write-first/" target="_blank" rel="noreferrer">Write Your First C# Code</a> module on Microsoft Learn. Then, answer the question below.
# --question--
## --text--
What is the difference between `Console.Write` and `Console.WriteLine`?

View File

@@ -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 Powells [Introduction to HTML video](https://www.youtube.com/watch?v=LGQuIIv2RVA&list=PL4-IK0AVhVjM0xE0K2uZRvsM7LkIhsPT-)
# --question--
## --text--
What are HTML tags?

View File

@@ -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 its 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 <a href="https://brytdesigns.com/html-css-javascript-whats-the-difference#What_is_HTML" target="_blank">the HTML vs CSS vs JavaScript article</a>. 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

View File

@@ -12,9 +12,7 @@ The final element needed to complete the HTML boilerplate is the `<body>` 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 Powells 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 arent aware of, such as missing closing tags and extra spaces in your HTML.
# --question--
## --text--
What is the purpose of the `body` element?

View File

@@ -39,12 +39,12 @@ By default, any text wrapped with an anchor tag without a `href` attribute will
Its 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 Powells HTML Links video above.
# --question--
## --text--
What HTML tag is used to create a link?

View File

@@ -85,12 +85,12 @@ In many cases, this will work just fine; however, you can still run into unexpec
</body>
```
# --question--
## --assignment--
# --assignment--
Watch Kevin Powells HTML File Structure video above.
# --question--
## --text--
What is the difference between an absolute and a relative link?

View File

@@ -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:
<iframe allowfullscreen="true" allowpaymentrequest="true" allowtransparency="true" class="cp_embed_iframe " frameborder="0" height="300" width="100%" name="cp_embed_2" scrolling="no" src="https://codepen.io/TheOdinProjectExamples/embed/ExXjoEp?height=300&amp;theme-id=dark&amp;default-tab=html%2Cresult&amp;slug-hash=ExXjoEp&amp;user=TheOdinProjectExamples&amp;name=cp_embed_2" style="width: 100%; overflow:hidden; display:block;" title="CodePen Embed" loading="lazy" id="cp_embed_ExXjoEp"></iframe>
# --question--
## --assignment--
# --assignment--
Watch Kevin Powells HTML Images Video above.
# --question--
## --text--
Which tag is used to display an image?

View File

@@ -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:
<iframe allowfullscreen="true" allowpaymentrequest="true" allowtransparency="true" class="cp_embed_iframe " frameborder="0" height="300" width="100%" name="cp_embed_2" scrolling="no" src="https://codepen.io/TheOdinProjectExamples/embed/ExXjoEp?height=300&amp;theme-id=dark&amp;default-tab=html%2Cresult&amp;slug-hash=ExXjoEp&amp;user=TheOdinProjectExamples&amp;name=cp_embed_2" style="width: 100%; overflow:hidden; display:block;" title="CodePen Embed" loading="lazy" id="cp_embed_ExXjoEp"></iframe>
# --question--
## --assignment--
# --assignment--
Read about the <a href="https://www.internetingishard.com/html-and-css/links-and-images/#image-formats" target="_blank">four main image formats</a> 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?

View File

@@ -13,12 +13,12 @@ To open up the inspector, you can right-click on any element of a webpage and cl
Dont get overwhelmed with all the tools youre 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?

View File

@@ -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?

View File

@@ -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?

View File

@@ -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?

View File

@@ -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?

View File

@@ -32,12 +32,12 @@ Changing our example from before to use paragraph elements fixes the issue:
<iframe allowfullscreen="true" allowpaymentrequest="true" allowtransparency="true" class="cp_embed_iframe " frameborder="0" height="300" width="100%" name="cp_embed_2" scrolling="no" src="https://codepen.io/TheOdinProjectExamples/embed/mdwbmdp?height=300&amp;theme-id=dark&amp;default-tab=html%2Cresult&amp;slug-hash=mdwbmdp&amp;user=TheOdinProjectExamples&amp;name=cp_embed_2" style="width: 100%; overflow:hidden; display:block;" title="CodePen Embed" loading="lazy" id="cp_embed_mdwbmdp"></iframe>
# --question--
## --assignment--
# --assignment--
Watch and follow along to Kevin Powells HTML Paragraph and Headings Video above.
# --question--
## --text--
How do you create a paragraph in HTML?

View File

@@ -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. Youll learn how to do that in the CSS lessons later in the curriculum.
# --question--
## --assignment--
# --assignment--
Watch Kevin Powells HTML Bold and Italic Text Video above.
# --question--
## --text--
What element should you use to make text bold and important?

View File

@@ -21,12 +21,12 @@ Writing an HTML comment is simple: You just enclose the comment with `<!--` and
<!-- I am another html comment -->
```
# --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?

View File

@@ -22,9 +22,7 @@ Ordered lists are created using the `<ol>` element. Each individual item in them
<iframe allowfullscreen="true" allowpaymentrequest="true" allowtransparency="true" class="cp_embed_iframe " frameborder="0" height="300" width="100%" name="cp_embed_2" scrolling="no" src="https://codepen.io/TheOdinProjectExamples/embed/yLXYvYp?height=300&amp;theme-id=dark&amp;default-tab=html%2Cresult&amp;slug-hash=yLXYvYp&amp;user=TheOdinProjectExamples&amp;name=cp_embed_2" style="width: 100%; overflow:hidden; display:block;" title="CodePen Embed" loading="lazy" id="cp_embed_yLXYvYp"></iframe>
# --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 youd 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?

View File

@@ -16,9 +16,7 @@ dashedName: word-problems
\- <a href="https://openstax.org/details/books/algebra-and-trigonometry" target="_blank" rel="noopener noreferrer nofollow">《代數與三角學》,作者 Jay Abramson</a>
# --question--
## --任務--
# --任務--
完成《商業數學分步手冊2021》第 63、75、85 和 118 頁的問題。
@@ -26,6 +24,8 @@ dashedName: word-problems
完成《代數與三角學》第 304、308 和 321 頁的問題。
# --question--
## --text--
以下哪些關鍵詞表示減法?

View File

@@ -16,12 +16,12 @@ dashedName: demand-and-revenue
\- <a href="https://lyryx.com/subjects/business/business-mathematics/" target="_blank" rel="noopener noreferrer nofollow">《商業數學分步手冊2021作者 Jean-Paul Oliver</a>
# --question--
## --作業--
# --作業--
完成《商業數學分步手冊2021》第 155 和 163 頁的問題。
# --question--
## --text--
下列哪個業務方程式不正確?

View File

@@ -12,12 +12,12 @@ dashedName: converting-fractions-and-decimals
這是<a href="https://colab.research.google.com/drive/1dgeEEODP7cwm_96_JqbjxxJhVpZcFfGe?usp=sharing#scrollTo=NkMTAVF0BlqE" target="_blank" rel="noopener noreferrer nofollow">視頻中使用的 Colab 筆記本</a>,使用此代碼作爲模型,自己寫代碼來轉換分數和小數。
# --question--
## --任務--
# --任務--
在你的代數 Colab 筆記本上添加轉換分數和小數的代碼。
# --question--
## --text--
以下哪項以小數正確表示“百分之三”?

View File

@@ -12,9 +12,7 @@ dashedName: fractions-and-decimals-extra
這是<a href="https://colab.research.google.com/drive/1a_RtRtVfeO0m2528T4V-bCXozWf3HpM7?usp=sharing" target="_blank" rel="noopener noreferrer nofollow">這個視頻中用到的 Colab 筆記本</a>,你可以把它作爲一個模型。
# --question--
## --任務--
# --任務--
在你的代數 Colab 筆記本上添加因數和求解變量的代碼。
@@ -22,6 +20,8 @@ dashedName: fractions-and-decimals-extra
在下面的筆記本中運行代碼以<a href="https://colab.research.google.com/drive/1qON4GYbMkaZJA7MYd7-RcDROOkuuBJg9?usp=sharing" target="_blank" rel="noopener noreferrer nofollow">練習轉換分數和小數</a>。作爲獎勵,看看用來產生練習問題的代碼。
# --question--
## --text--
你不能在 Google Colaboratory 中使用以下哪種語言?

View File

@@ -12,12 +12,12 @@ dashedName: functions-and-graphing-extra
這是<a href="https://colab.research.google.com/drive/1UYorWd9-Btf_ZQyA9YdUzxzKR8rnVrSV" target="_blank" rel="noopener noreferrer nofollow">和視頻配套的 Colab 筆記本</a>。
# --question--
## --assignment--
# --assignment--
在你的代數 Colab 筆記本上添加代碼,用於函數和圖像。
# --question--
## --text--
你會導入哪個 Python 庫來創建可以繪圖的數組?

View File

@@ -12,12 +12,12 @@ dashedName: functions
這是<a href="https://colab.research.google.com/drive/1d0e55NoKjKILIum34POv04h0OLpE_pkn" target="_blank" rel="noopener noreferrer nofollow">這個和下一個視頻中用到的 Colab 筆記本</a>。
# --question--
## --assignment--
# --assignment--
在你的代數 Colab 筆記本上添加代碼,創建用於小數到分數轉換的 Python 函數。
# --question--
## --text--
在 Python 中定義了一個函數後,將函數的每一行縮進多少個空格?

View File

@@ -12,9 +12,7 @@ dashedName: graphing
這是<a href="https://colab.research.google.com/drive/1UYorWd9-Btf_ZQyA9YdUzxzKR8rnVrSV#scrollTo=yJiVB8wdHRxS" target="_blank" rel="noopener noreferrer nofollow">和上兩個視頻配套的 Colab 筆記本</a>,這樣你可以開始製作你自己的圖像。
# --question--
## --assignment--
# --assignment--
在你的代數 Colab 筆記本上添加代碼,用於函數和圖像。
@@ -22,6 +20,8 @@ dashedName: graphing
運行下面的筆記本看看<a href="https://colab.research.google.com/drive/1UYorWd9-Btf_ZQyA9YdUzxzKR8rnVrSV#scrollTo=yJiVB8wdHRxS" target="_blank" rel="noopener noreferrer nofollow">使用代數和 Python 創建圖像的更多方法</a>。
# --question--
## --text--
以下哪種情況會在圖像上畫出一條藍線?

View File

@@ -12,12 +12,12 @@ This first video will show you how to graph systems of equations with written ma
這是<a href="https://colab.research.google.com/drive/1N1JEZJctODxsntROnmg0VqMSHXYdIlFD?usp=sharing" target="_blank" rel="noopener noreferrer nofollow">這個視頻中用到的 Colab 筆記本</a>。
# --question--
## --任務--
# --任務--
將視頻中的代碼添加到你正在創建的代數筆記本中,並使用不同的函數進行測試。
# --question--
## --text--
numpy `linspace()` 函數需要三個參數來創建一個數組。 它不採用以下哪個參數?

View File

@@ -12,9 +12,7 @@ dashedName: how-to-solve-for-x-extra
這是<a href="https://colab.research.google.com/drive/1Jv6WxW93J_1GZao8DkNb4X0D93oVibbs" target="_blank" rel="noopener noreferrer nofollow">和視頻配套的 Colab 筆記本</a>。用它來爲你正在創建的代數 Colab 筆記本添加更多內容。
# --question--
## --任務--
# --任務--
將視頻中更多求解 x 的方法的代碼添加到你的代數 Colab 筆記本中。
@@ -22,6 +20,8 @@ dashedName: how-to-solve-for-x-extra
打開以下 Colab 筆記本,運行單元格,然後<a href="https://colab.research.google.com/drive/1XjmHoERFKcvol7FPidQE-wgdvR82HV45" target="_blank" rel="noopener noreferrer nofollow">練習解決一步和兩步的代數問題</a>。作爲獎勵,看看生成練習題的代碼。
# --question--
## --text--
如果你導入 sympy 並定義 x 爲變量,下面的代碼會有什麼輸出?

View File

@@ -12,12 +12,12 @@ dashedName: solving-for-x
這是<a href="https://colab.research.google.com/drive/11Zi77gs1FKoEqfPqYa2HtTENiWZyQAO2?usp=sharing" target="_blank" rel="noopener noreferrer nofollow">和視頻配套的 Colab 筆記本</a>。將視頻中的代碼添加到你的代數 Colab 筆記本中,看看如何用 Python 求解 X。 然後,如果你想的話,修改代碼,進行測試,並與用紙筆解題的方法進行比較。 記住,方程輸入需要使用 Python 語法。
# --question--
## --任務--
# --任務--
將視頻中求解 x 的方法的代碼添加到你的代數 Colab 筆記本中。
# --question--
## --text--
在 Python 中,你導入什麼庫來解決帶有變量的代數問題?

View File

@@ -12,12 +12,12 @@ dashedName: solving-systems
這是<a href="https://colab.research.google.com/drive/1UfyQiXCedAAv5kcqgi_pGYV-HkSgN8YD?usp=sharing" target="_blank" rel="noopener noreferrer nofollow">這個視頻中用到的 Colab 筆記本</a>。
# --question--
## --任務--
# --任務--
在你的筆記本上添加代碼,以求解方程組和繪製圖像。
# --question--
## --text--
下面哪一項是 SymPy 能做而 matplotlib 不能做的?

View File

@@ -12,12 +12,12 @@ dashedName: linear-equations
這是<a href="https://colab.research.google.com/drive/1UJ1w-XFTuCfK6FI3H2GT0lbxd2HO3tQ6?usp=sharing" target="_blank" rel="noopener noreferrer nofollow">和上兩個視頻配套的 Colab 筆記本</a>,這樣你就可以看到公式。
# --question--
## --任務--
# --任務--
在你的代數 Colab 筆記本上添加代碼,通過點或通過方程輸入繪製函數圖像。
# --question--
## --text--
如果你知道斜率“m”你有一個 (x,y) 座標點,你可以用以下哪個方程來求 “b”在 Python 中代表 y 截距?

View File

@@ -16,12 +16,12 @@ dashedName: introduction-to-college-algebra-with-python
\- <a href="https://openstax.org/details/books/algebra-and-trigonometry" target="_blank" rel="noopener noreferrer nofollow">《代數與三角學》,作者 Jay Abramson</a>
# --question--
## --任務--
# --任務--
<a href="https://drive.google.com/" target="_blank" rel="noopener noreferrer nofollow">在你的 Google Drive 上創建一個 Colab 筆記本</a>,這樣你可以跟着視頻一起學習。
# --question--
## --text--
在 Google Colab 中添加文本時,你會用什麼符號來創建一個將出現在目錄中的標題?

View File

@@ -10,12 +10,12 @@ dashedName: ratios-and-proportions-extra
本節最後一個視頻將告訴你如何在其他應用中使用比例,如貨幣匯率和單位轉換。 它還將向你展示更多關於設置你的筆記本和完成練習任務的信息。
# --question--
## --任務--
# --任務--
打開以下 Colab 筆記本,運行單元格,然後<a href="https://colab.research.google.com/drive/1XjmHoERFKcvol7FPidQE-wgdvR82HV45" target="_blank" rel="noopener noreferrer nofollow">練習解決一步代數問題</a>。作爲獎勵,看看生成練習題的代碼。
# --question--
## --text--
0.9999......(重複 9的另一種寫法是什麼

View File

@@ -12,12 +12,12 @@ dashedName: solving-proportions
這是<a href="https://colab.research.google.com/drive/1Q7nCcbrnoYttkwiHB_nQ-X1JuLpUmtRD?usp=sharing" target="_blank" rel="noopener noreferrer nofollow">和視頻配套的 Colab 筆記本</a>。如果你還沒有這樣做,請設置好上一個視頻中你的代數 Colab 筆記本。 然後,將本視頻中的代碼添加到其中。
# --question--
## --任務--
# --任務--
將視頻中的代碼添加到你在第一步創建的代數 Colab 筆記本中。
# --question--
## --text--
在求解一個比例時,如果一個分子是零,另一個分子必須是零,該語句才成立嗎?

Some files were not shown because too many files have changed in this diff Show More