mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-06-01 04:02:05 -04:00
1.3 KiB
1.3 KiB
id, title, challengeType, dashedName
| id | title | challengeType | dashedName |
|---|---|---|---|
| 647e238f8acb466c97ccbf04 | Store and Retrieve Data Using Literal and Variable Values in C# | 19 | store-and-retrieve-data-using-literal-and-variable-values-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-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.
- When you are finished, come back and correctly answer the question below.
--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?
--answers--
int x = 12.3m;
decimal x = 12.3m;
bool x = 'False';
--video-solution--
2