Files
freeCodeCamp/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
2023-11-01 16:37:07 +01:00

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:

  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.
  2. 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