mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-27 16:01:44 -04:00
1.2 KiB
1.2 KiB
id, title, challengeType, dashedName
| id | title | challengeType | dashedName |
|---|---|---|---|
| 647e23788acb466c97ccbf02 | Perform Basic Operations on Numbers in C# | 19 | perform-basic-operations-on-numbers-in-c-sharp |
--description--
This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge:
- 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.
- When you are finished, come back and correctly answer the question below.
--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?
int result = 3 + 1 * 5 / 2;
--answers--
10
5
6
--video-solution--
2